blob: 840c931ae05717ecdde10a164291f8484a7c435d (
plain)
1 # Description: Wrapper library for 3GPP Adaptive Multi-Rate Narrowband Floating-point Speech Codec.
2 # URL: http://www.penguin.cz/~utx/amr
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: unzip
5
6 name=amrnb
7 version=11.0.0.0
8 release=1
9 source=(http://ftp.penguin.cz/pub/users/utx/amr/$name-$version.tar.bz2
10 http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-b00.zip)
11
12 build() {
13 cd $name-$version
14
15 cp $SRC/26104-b00_ANSI_C_source_code.zip .
16 sed -i -e 's| $(MAKE) $(top_srcdir)/26104-b00_ANSI_C_source_code.zip||' Makefile.in
17
18 ./configure --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22 }
|