contrib/amrnb/Pkgfile

23 lines
615 B
Plaintext
Raw Normal View History

2008-08-26 12:10:55 +02:00
# Description: Wrapper library for 3GPP Adaptive Multi-Rate Narrowband Floating-point Speech Codec.
# URL: http://www.penguin.cz/~utx/amr
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2016-06-26 08:02:24 +02:00
# Depends on: unzip
2008-08-26 12:10:55 +02:00
name=amrnb
2019-10-13 10:30:15 +02:00
version=11.0.0.0
release=1
2008-08-26 12:10:55 +02:00
source=(http://ftp.penguin.cz/pub/users/utx/amr/$name-$version.tar.bz2
2019-10-13 10:30:15 +02:00
http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-b00.zip)
2008-08-26 12:10:55 +02:00
build() {
cd $name-$version
2019-10-13 10:30:15 +02:00
cp $SRC/26104-b00_ANSI_C_source_code.zip .
sed -i -e 's| $(MAKE) $(top_srcdir)/26104-b00_ANSI_C_source_code.zip||' Makefile.in
2008-08-26 12:10:55 +02:00
2016-06-26 08:02:24 +02:00
./configure --prefix=/usr
2008-08-26 12:10:55 +02:00
make
make DESTDIR=$PKG install
}