contrib/amrwb/Pkgfile

23 lines
590 B
Plaintext
Raw Normal View History

2023-08-18 21:34:08 +02:00
# Description: Wrapper library for 3GPP Adaptive Multi-Rate Wideband Floating-point Speech Codec
2008-08-26 12:09:50 +02:00
# URL: http://www.penguin.cz/~utx/amr
2023-08-18 21:34:08 +02:00
# Maintainer: unmaintained
2016-06-26 08:01:49 +02:00
# Depends on: unzip
2008-08-26 12:09:50 +02:00
name=amrwb
2019-10-13 10:30:04 +02:00
version=11.0.0.0
2016-06-26 08:01:49 +02:00
release=2
2008-08-26 12:09:50 +02:00
source=(http://ftp.penguin.cz/pub/users/utx/amr/$name-$version.tar.bz2
2023-08-18 21:34:08 +02:00
https://www.3gpp.org/ftp/Specs/archive/26_series/26.204/26204-b00.zip)
2008-08-26 12:09:50 +02:00
build() {
2023-08-18 21:34:08 +02:00
cd $name-$version
2019-10-13 10:30:04 +02:00
2023-08-18 21:34:08 +02:00
cp $PKGMK_SOURCE_DIR/26204-b00.zip .
sed -i -e 's| $(MAKE) $(top_srcdir)/26204-b00_ANSI-C_source_code.zip||' Makefile.in
2008-08-26 12:09:50 +02:00
2023-08-18 21:34:08 +02:00
./configure --prefix=/usr
2008-08-26 12:09:50 +02:00
2023-08-18 21:34:08 +02:00
make
make DESTDIR=$PKG install
2008-08-26 12:09:50 +02:00
}