mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
877 B
Bash
24 lines
877 B
Bash
# $Id: PKGBUILD 28990 2009-03-04 06:04:45Z eric $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Carlos Ruiz <cailovirtual@gmail.com>
|
|
|
|
pkgname=taglib-sharp
|
|
pkgver=2.0.3.2
|
|
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>=1.9')
|
|
source=(http://download.banshee-project.org/taglib-sharp/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('7c6e613e803b31d3d62e4def0359fcb4')
|
|
|
|
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
|
|
}
|