diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 15:19:40 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 15:19:40 +0200 |
commit | f2e62e5c80b875710b6c758a2181a55b88eb2682 (patch) | |
tree | 2ba3d64f0733b2ac87166c8f2020cdec7752cec7 /extra/amrwb/Pkgfile | |
parent | 066e4d46511ecbe4dec003506c3fa01ff48b0be5 (diff) | |
download | nutyx-extra-f2e62e5c80b875710b6c758a2181a55b88eb2682.tar.gz nutyx-extra-f2e62e5c80b875710b6c758a2181a55b88eb2682.tar.bz2 nutyx-extra-f2e62e5c80b875710b6c758a2181a55b88eb2682.tar.xz nutyx-extra-f2e62e5c80b875710b6c758a2181a55b88eb2682.zip |
amrwb dans extra
Diffstat (limited to 'extra/amrwb/Pkgfile')
-rw-r--r-- | extra/amrwb/Pkgfile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/extra/amrwb/Pkgfile b/extra/amrwb/Pkgfile new file mode 100644 index 000000000..22d39a056 --- /dev/null +++ b/extra/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 +} + + |