forked from ports/contrib
27 lines
637 B
Plaintext
27 lines
637 B
Plaintext
# Description: utility for viewing and editing tags of audiofiles
|
|
# URL: http://easytag.sourceforge.net/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: id3lib libvorbis gtk
|
|
|
|
name=easytag
|
|
version=1.99.13
|
|
release=1
|
|
source="http://dl.sourceforge.net/easytag/$name-$version.tar.bz2"
|
|
|
|
build()
|
|
{
|
|
export CFLAGS="$CFLAGS -g"
|
|
cd $name-$version
|
|
aclocal
|
|
automake
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-nls \
|
|
--enable-maintainer-mode
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -rf $PKG/usr/share/{easytag,locale}
|
|
}
|