summaryrefslogtreecommitdiff
path: root/community/bashburn
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-04-05 14:26:38 +0000
commit415856bdd4f48ab4f2732996f0bae58595092bbe (patch)
treeede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/bashburn
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/bashburn')
-rw-r--r--community/bashburn/ChangeLog2
-rw-r--r--community/bashburn/PKGBUILD32
2 files changed, 34 insertions, 0 deletions
diff --git a/community/bashburn/ChangeLog b/community/bashburn/ChangeLog
new file mode 100644
index 000000000..a3611d06e
--- /dev/null
+++ b/community/bashburn/ChangeLog
@@ -0,0 +1,2 @@
+2009-12-29 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * Update to major version 3.0.1
diff --git a/community/bashburn/PKGBUILD b/community/bashburn/PKGBUILD
new file mode 100644
index 000000000..5bed7de28
--- /dev/null
+++ b/community/bashburn/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 7017 2009-12-29 20:22:18Z jlichtblau $
+# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+# Contributor: Ronald van Haren <ronald.archlinux.org>
+# Contributor: Andreas Wagner <A.Wagner@stud.uni-frankfurt.de>
+
+pkgname=bashburn
+pkgver=3.0.1
+pkgrel=1
+pkgdesc="A cd burning shell script"
+arch=('i686' 'x86_64')
+url="http://bashburn.dose.se/"
+license=('GPL2')
+depends=('bash' 'cdrdao' 'cdrkit' 'eject')
+optdepends=('dvd+rw-tools: support for burning DVDs')
+source=(BashBurn-${pkgver}.tar.gz::"http://bashburn.dose.se/index.php?s=file_download&id=18")
+md5sums=('debac9fe5ae2b116b01e0ff774870a7f')
+
+build() {
+ cd ${srcdir}/${pkgver}
+
+# let it install in the correct location
+ sed -i 's|bblib=${lib}/lib|bblib=${lib}|' Install.sh || return 1
+
+# install
+ ./Install.sh --prefix=${pkgdir}/usr || return 1
+
+# fix executable
+ sed -i 's|'$pkgdir'||' ${pkgdir}/usr/bin/bashburn || return 1
+
+# remove useless docs (changelog and such)
+ rm -rf ${pkgdir}/usr/lib/Bashburn/docs || return 1
+}