summaryrefslogtreecommitdiff
path: root/extra/taglib-sharp/PKGBUILD
blob: bde9d495e2466422ec5485b31813a94ccd16a391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id: PKGBUILD 75153 2010-03-31 23:10:28Z giovanni $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Carlos Ruiz <cailovirtual@gmail.com>

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')
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
}