# $Id: PKGBUILD 75153 2010-03-31 23:10:28Z giovanni $ # Maintainer: Jan de Groot # Contributor: Carlos Ruiz pkgname=taglib-sharp pkgver=2.0.3.7 pkgrel=1 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." arch=('i686' 'x86_64' 'mips64el') url="http://www.taglib-sharp.com/Main_Page" license=('LGPL2') depends=('mono') source=(http://download.banshee-project.org/taglib-sharp/${pkgver}/${pkgname}-${pkgver}.tar.gz) md5sums=('fa45d2519ca26b04716789fe4ac81f8b') 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 }