diff options
Diffstat (limited to 'base/amrwb/Pkgfile')
-rw-r--r-- | base/amrwb/Pkgfile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/base/amrwb/Pkgfile b/base/amrwb/Pkgfile new file mode 100644 index 000000000..22d39a056 --- /dev/null +++ b/base/amrwb/Pkgfile @@ -0,0 +1,28 @@ +# Description: Wrapper library for 3GPP Adaptive Multi-Rate Wideband Floating-point Speech Codec. +# URL: http://www.penguin.cz/~utx/amr +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Danny Rawlins, monster dot romster at gmail dot com +# Depends on: +# Run on: + +name=amrwb +version=7.0.0.3 +release=1 +source=(http://ftp.penguin.cz/pub/users/utx/amr/$name-$version.tar.bz2 + http://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-700.zip) + +build() { + cd $name-$version + cp $SRC/26204-700_ANSI-C_source_code.zip . + sed -i -e 's| $(MAKE) $(top_srcdir)/26204-700_ANSI-C_source_code.zip||' Makefile.in + + ./configure \ + --prefix=/usr \ + --mandir=/usr/man \ + --disable-static + + make + make DESTDIR=$PKG install +} + + |