Date: Saturday, February 20, 2010 @ 05:51:45 Author: allan Revision: 69338
upgpkg: libcdaudio 0.99.12-4 rebuild to remove .FILELIST, tidy up PKGBUILD Modified: libcdaudio/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2010-02-20 10:48:34 UTC (rev 69337) +++ PKGBUILD 2010-02-20 10:51:45 UTC (rev 69338) @@ -1,23 +1,27 @@ # $Id$ -# Maintainer: arjan <[email protected]> -#contributor Sarah Hay <[email protected]> +# Maintainer: +# Contributor Sarah Hay <[email protected]> pkgname=libcdaudio pkgver=0.99.12 -pkgrel=3 -pkgdesc="A portable library for controlling Audio CDs and managing the transfers of information with the CDDB system." -arch=(i686 x86_64) +pkgrel=4 +pkgdesc="Library for controlling Audio CDs and interacting with CDDB" +arch=('i686' 'x86_64') url="http://libcdaudio.sourceforge.net/" license=('GPL') -depends=(glibc) +depends=('glibc') +options=('!libtool') source=(http://downloads.sourceforge.net/sourceforge/libcdaudio/$pkgname-${pkgver}p2.tar.gz) md5sums=('15de3830b751818a54a42899bd3ae72c') -options=('!libtool') build() { - cd $startdir/src/$pkgname-${pkgver}p2 + cd $srcdir/$pkgname-${pkgver}p2 ./configure --prefix=/usr make || return 1 - make DESTDIR=$startdir/pkg install } +package() { + cd $srcdir/$pkgname-${pkgver}p2 + make DESTDIR=$pkgdir install +} +
