blob: 0edf5d079c7d272ae65770bd4c44357c3da67ce2 (
plain)
1 # Description: Wrapper library for 3GPP Adaptive Multi-Rate Wideband 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=amrwb
7 version=11.0.0.0
8 release=2
9 source=(http://ftp.penguin.cz/pub/users/utx/amr/$name-$version.tar.bz2
10 https://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-b00.zip)
11
12 build() {
13 cd $name-$version
14
15 cp $SRC/26204-b00_ANSI-C_source_code.zip .
16 sed -i -e 's| $(MAKE) $(top_srcdir)/26204-b00_ANSI-C_source_code.zip||' Makefile.in
17
18 ./configure --prefix=/usr
19
20 make
21 make DESTDIR=$PKG install
22 }
|