blob: e1f29f829f69aafb3d507babb3734c0b457a62fd (
plain)
1 # Description: Library to read and edit the meta-data of popular audio formats.
2 # URL: http://ktown.kde.org/~wheeler/taglib.html
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Mark Rosenstand, mark at borkware dot net
5 # Depends on:
6
7 name=taglib
8 version=1.5
9 release=1
10 source=(http://ktown.kde.org/~wheeler/files/src/taglib-$version.tar.gz)
11
12 build() {
13 cd taglib-$version
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17 }
|