Date: Thursday, April 27, 2017 @ 20:06:32 Author: jlichtblau Revision: 226123
upgpkg: bashburn 3.1.0-3 - dropped the eject dependency Modified: bashburn/trunk/PKGBUILD bashburn/trunk/bashburn.changelog --------------------+ PKGBUILD | 25 ++++++++++++++----------- bashburn.changelog | 11 +++++++---- 2 files changed, 21 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2017-04-27 17:52:49 UTC (rev 226122) +++ PKGBUILD 2017-04-27 20:06:32 UTC (rev 226123) @@ -1,17 +1,17 @@ # $Id$ -# Maintainer: Jaroslav Lichtblau <[email protected]> +# Maintainer: Jaroslav Lichtblau <[email protected]> # Contributor: Ronald van Haren <ronald.archlinux.org> # Contributor: Andreas Wagner <[email protected]> pkgname=bashburn pkgver=3.1.0 -pkgrel=2 -pkgdesc="A cd burning shell script" +pkgrel=3 +pkgdesc="CD burning shell script" arch=('any') url="http://bashburn.dose.se/" license=('GPL2') changelog=$pkgname.changelog -depends=('bash' 'cdrdao' 'cdrkit' 'eject') +depends=('bash' 'cdrdao' 'cdrkit') optdepends=('dvd+rw-tools: support for burning DVDs' 'cdparanoia: Ripping audio CDs' 'vorbis-tools: Vorbis-Support' @@ -19,21 +19,24 @@ 'normalize: Normalize audio' 'mpg123: MP3-Support' 'sudo: For missing permissions') -source=("BashBurn-3.1.0.tar.gz::http://bashburn.dose.se/index.php?s=file_download&id=25") +source=(http://bashburn.dose.se/files/BashBurn-${pkgver}.tar.gz) sha256sums=('b78d5de1ee1b6e19aeee5b2f37a12aa6d02c665fd7645cad626ae7267351bb3c') -package() { - cd ${srcdir}/BashBurn-${pkgver} +prepare() { + cd "${srcdir}"/BashBurn-${pkgver} # let it install in the correct location sed -i 's|bblib=${lib}/lib|bblib=${lib}|' Install.sh +} -# install - ./Install.sh --prefix=${pkgdir}/usr +package() { + cd "${srcdir}"/BashBurn-${pkgver} + ./Install.sh --prefix="${pkgdir}"/usr + # fix executable - sed -i 's|'$pkgdir'||' ${pkgdir}/usr/bin/$pkgname + sed -i 's|'$pkgdir'||' "${pkgdir}"/usr/bin/${pkgname} # remove useless docs (changelog and such) - rm -rf ${pkgdir}/usr/lib/Bashburn/docs + rm -rf "${pkgdir}"/usr/lib/Bashburn/docs } Modified: bashburn.changelog =================================================================== --- bashburn.changelog 2017-04-27 17:52:49 UTC (rev 226122) +++ bashburn.changelog 2017-04-27 20:06:32 UTC (rev 226123) @@ -1,13 +1,16 @@ -2011-12-08 Jaroslav Lichtblau <[email protected]> +2017-04-27 Jaroslav Lichtblau <[email protected]> + * bashburn 3.1.0-3 dropped the eject dependency + +2011-12-08 Jaroslav Lichtblau <[email protected]> * bashburn 3.1.0-1 -2011-11-20 Jaroslav Lichtblau <[email protected]> +2011-11-20 Jaroslav Lichtblau <[email protected]> * bashburn 3.0.1-3 * FS#26937 - [bashburn] cannot download sources fixed -2011-07-20 Jaroslav Lichtblau <[email protected]> +2011-07-20 Jaroslav Lichtblau <[email protected]> * bashburn 3.0.1-2 * added optdeps to the package -2009-12-29 Jaroslav Lichtblau <[email protected]> +2009-12-29 Jaroslav Lichtblau <[email protected]> * Update to major version 3.0.1
