mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
22 lines
609 B
Bash
22 lines
609 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
|
||
|
}
|