diff options
Diffstat (limited to 'main/libvorbis/APKBUILD')
-rw-r--r-- | main/libvorbis/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/libvorbis/APKBUILD b/main/libvorbis/APKBUILD new file mode 100644 index 0000000000..c4c0713435 --- /dev/null +++ b/main/libvorbis/APKBUILD @@ -0,0 +1,23 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=libvorbis +pkgver=1.2.0 +pkgrel=0 +pkgdesc="Vorbis codec library" +url="http://www.xiph.org/ogg/vorbis/" +license="custom" +subpackages="$pkgname-dev $pkgname-doc" +depends="libogg uclibc" +makedepends="libogg-dev g++" +#source="http://people.xiph.org/~giles/2008/$pkgname-$pkgver.tar.gz" +source="http://downloads.xiph.org/releases/vorbis/libvorbis-1.2.0.tar.gz" + +build () +{ + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-static || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 + install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING +} +md5sums="478646358c49f34aedcce58948793619 libvorbis-1.2.0.tar.gz" |