diff options
author | sibel <lesibel@free.fr> | 2011-03-03 13:02:19 +0100 |
---|---|---|
committer | sibel <lesibel@free.fr> | 2011-03-03 13:02:19 +0100 |
commit | b91d9faa4078bcc9243fc33e8dc56d2ab3054293 (patch) | |
tree | 1f78fe5d12f2c6904e0ef9f1d3ae42e0043410af /base/amrwb/Pkgfile | |
parent | 76a8df8560d935b68e7019326a7d1e6c3a7184e3 (diff) | |
download | nutyx-extra-b91d9faa4078bcc9243fc33e8dc56d2ab3054293.tar.gz nutyx-extra-b91d9faa4078bcc9243fc33e8dc56d2ab3054293.tar.bz2 nutyx-extra-b91d9faa4078bcc9243fc33e8dc56d2ab3054293.tar.xz nutyx-extra-b91d9faa4078bcc9243fc33e8dc56d2ab3054293.zip |
amrwb déplacé dans base
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 +} + + |