blob: 4aab6a4bcda90b39825b0c4cd4eec19f42f642ca (
plain)
1 # Description: Tag Tool is a program to manage the information fields in MP3 and Ogg Vorbis files.
2 # URL: http://tagtool.sourceforge.net/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Till Biedermann, tillbiedermann at yahoo dot de
5 # Depends on: libglade id3lib libvorbis p5-xml-parser
6
7 name=tagtool
8 version=0.12.3
9 release=1
10 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2)
11
12 build() {
13 cd $name-$version
14
15 ./configure \
16 --prefix=/usr \
17 --disable-nls
18
19 make
20 make DESTDIR=$PKG install
21 rm -r $PKG/usr/share/locale
22 }
|