diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-18 09:33:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-18 09:33:50 +0000 |
commit | 2d5ad4d5336f4a51514b3c26bf8ce318e027bfdf (patch) | |
tree | a2d17d9a25e809df6ff2f7b8e30e24701f135784 /main/speex | |
parent | 15e0e1b784255ab4ccb3fc8decf2cc5efc797e9f (diff) | |
download | aports-2d5ad4d5336f4a51514b3c26bf8ce318e027bfdf.tar.bz2 aports-2d5ad4d5336f4a51514b3c26bf8ce318e027bfdf.tar.xz |
main/speex: moved from testing
Diffstat (limited to 'main/speex')
-rw-r--r-- | main/speex/APKBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/main/speex/APKBUILD b/main/speex/APKBUILD new file mode 100644 index 0000000000..48804f583e --- /dev/null +++ b/main/speex/APKBUILD @@ -0,0 +1,41 @@ +# Maintainer: Natanel Copa <ncopa@alpinelinux.org> +pkgname=speex +pkgver=1.2_rc1 +_ver=${pkgver%_*}${pkgver#*_} +pkgrel=0 +pkgdesc="an audio compression format designed for speech" +url="http://www.speex.org/" +license="BSD" +depends= +makedepends="libogg-dev" +install= +subpackages="$pkgname-dev $pkgname-doc libspeex" +source="http://downloads.xiph.org/releases/speex/speex-$_ver.tar.gz" + +_builddir="$srcdir"/$pkgname-$_ver +prepare() { + cd "$_builddir" +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 +} + +package() { + cd "$_builddir" + make -j1 DESTDIR="$pkgdir" install +} + +libspeex() { + pkgdesc="$pkgdesc - libraries" + mkdir -p "$subpkgdir"/usr/lib + mv "$pkgdir"/usr/lib/libspeex*.so.* "$subpkgdir"/usr/lib/ +} + + +md5sums="c4438b22c08e5811ff10e2b06ee9b9ae speex-1.2rc1.tar.gz" |