PKGBUILDs/extra/libid3tag/PKGBUILD
2009-10-11 11:56:07 -05:00

23 lines
614 B
Bash

# Maintainer: Manuel Rotter <rotter.manuel@gmail.com>
pkgname=libid3tag
pkgver=0.15.1b
pkgrel=1
pkgdesc="library for id3 tagging"
arch=('arm')
url="http://www.underbit.com/products/mad/"
license=('GPL')
depends=('zlib')
options=(!libtool)
source=(ftp://ftp.mars.org/pub/mpeg/$pkgname-$pkgver.tar.gz
id3tag.pc)
md5sums=('e5808ad997ba32c498803822078748c3'
'cd5ea001dc24505040b781ad1de9ddf2')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
install -D -m644 $srcdir/id3tag.pc $pkgdir/usr/lib/pkgconfig/id3tag.pc
}