diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/bashburn/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/bashburn/PKGBUILD')
-rw-r--r-- | community/bashburn/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
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 +} |