Date: Saturday, March 3, 2012 @ 04:20:44 Author: daniel Revision: 151834
upgpkg: taglib-sharp 2.0.4.0-1 New upstream release Modified: taglib-sharp/trunk/PKGBUILD ----------+ PKGBUILD | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2012-03-03 08:49:08 UTC (rev 151833) +++ PKGBUILD 2012-03-03 09:20:44 UTC (rev 151834) @@ -1,24 +1,28 @@ # $Id$ -# Maintainer: Jan de Groot <[email protected]> +# Maintainer: Daniel Isenmann <[email protected]> # Contributor: Carlos Ruiz <[email protected]> pkgname=taglib-sharp -pkgver=2.0.3.7 -pkgrel=2 -pkgdesc="Free and Open Source library for the .NET 2.0 and Mono frameworks which will let you tag your software with as much or as little detail as you like without slowing you down." +pkgver=2.0.4.0 +pkgrel=1 +pkgdesc="It's a library for reading and writing metadata in media files, including video, audio, and photo formats for Mono" arch=('i686' 'x86_64') -url="http://www.taglib-sharp.com/Main_Page" +url="https://github.com/mono/taglib-sharp" license=('LGPL2') depends=('mono') source=(http://download.banshee-project.org/taglib-sharp/${pkgver}/${pkgname}-${pkgver}.tar.gz) -md5sums=('fa45d2519ca26b04716789fe4ac81f8b') +md5sums=('b886a65083aafdfefa0675675bcbeb9a') build() { export MONO_SHARED_DIR="${startdir}/src/.wabi" mkdir -p "${MONO_SHARED_DIR}" cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr --disable-docs || return 1 - make || return 1 - make DESTDIR=${pkgdir} install || return 1 + ./configure --prefix=/usr --disable-docs + make } + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +}
