forked from ports/contrib
22 lines
467 B
Plaintext
22 lines
467 B
Plaintext
# Description: Library for manipulating ID3v1 and ID3v2 tags.
|
|
# URL: http://id3lib.sourceforge.net/
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Jean-Philippe Combe, jphcombe at yahoo dot fr
|
|
# Depends on:
|
|
|
|
name=libid3
|
|
version=3.8.3
|
|
release=1
|
|
source=(http://dl.sourceforge.net/id3lib/id3lib-$version.tar.gz)
|
|
|
|
build() {
|
|
cd id3lib-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
|
|
make && make install DESTDIR=$PKG
|
|
}
|
|
|