diff options
author | Carlo Lanmdeter <clandmeter@gmail> | 2009-03-05 14:47:05 +0000 |
---|---|---|
committer | Carlo Lanmdeter <clandmeter@gmail> | 2009-03-05 14:47:05 +0000 |
commit | 87f8eb8ec3fad06f3d1ab02fc4aa36e4143c3baa (patch) | |
tree | 35be2e031799d3f69895185bc5fee8709a4a1aed /extra/libid3tag | |
parent | 4f690851a942fdf247f3eafaf954f6ae37dcd5c3 (diff) | |
download | aports-87f8eb8ec3fad06f3d1ab02fc4aa36e4143c3baa.tar.bz2 aports-87f8eb8ec3fad06f3d1ab02fc4aa36e4143c3baa.tar.xz |
extra/libid3tag: new aport
Diffstat (limited to 'extra/libid3tag')
-rw-r--r-- | extra/libid3tag/APKBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/libid3tag/APKBUILD b/extra/libid3tag/APKBUILD new file mode 100644 index 0000000000..9410e353c6 --- /dev/null +++ b/extra/libid3tag/APKBUILD @@ -0,0 +1,27 @@ +# Contributor: Carlo Landmeter <clandmeter@gmail.com> +# Maintainer: Carlo Landmeter <clandmeter@gmail.com> +pkgname=libid3tag +pkgver=0.15.1b +pkgrel=0 +pkgdesc="id3 tagger for mp3" +url="http://www.underbit.com/products/mad/" +license="GPL" +depends="zlib" +makedepends="uclibc++-dev zlib-dev" +install= +subpackages="$pkgname-dev" +source="ftp://ftp.mars.org/pub/mpeg/libid3tag-0.15.1b.tar.gz" + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make DESTDIR="$pkgdir" install + +} + +md5sums="e5808ad997ba32c498803822078748c3 libid3tag-0.15.1b.tar.gz" |