Date: Saturday, November 14, 2015 @ 21:18:22 Author: arojas Revision: 251034
Update to 1.10 Modified: taglib/trunk/PKGBUILD ----------+ PKGBUILD | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-11-14 14:20:48 UTC (rev 251033) +++ PKGBUILD 2015-11-14 20:18:22 UTC (rev 251034) @@ -1,28 +1,29 @@ # $Id$ -# Maintainer: Tom Gundersen <[email protected]> +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Tom Gundersen <[email protected]> # Contributor: Ike Devolder <[email protected]> # Contributor: Andrea Scarpino <[email protected]> # Contributor: Tobias Powalowski <[email protected]> pkgname=taglib -pkgver=1.9.1 +pkgver=1.10 pkgrel=1 pkgdesc="A Library for reading and editing the meta-data of several popular audio formats" -arch=('i686' 'x86_64') +arch=(i686 x86_64) url="http://taglib.github.io/" -license=('LGPL' 'MPL') -depends=('sh' 'zlib' 'gcc-libs') -makedepends=('cmake' 'pkg-config') -source=("http://${pkgname}.github.io/releases/${pkgname}-${pkgver}.tar.gz") -md5sums=('0d35df96822bbd564c5504cb3c2e4d86') +license=(LGPL MPL) +depends=(zlib) +makedepends=(cmake) +source=("http://taglib.github.io/releases/$pkgname-$pkgver.tar.gz") +md5sums=('5b4441a15423b046dd92a096e09ea22c') +prepare() { + mkdir -p build +} + build() { - cd "${srcdir}"/${pkgname}-${pkgver} - - cd "${srcdir}" - mkdir build cd build - cmake ../${pkgname}-${pkgver} \ + cmake ../$pkgname-$pkgver \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DWITH_MP4=ON \ @@ -31,6 +32,6 @@ } package() { - cd "${srcdir}"/build - make DESTDIR="${pkgdir}" install + cd build + make DESTDIR="$pkgdir" install }
