1
0
forked from ports/contrib

amrwb: new port

This commit is contained in:
Danny Rawlins 2008-08-26 20:09:50 +10:00
parent f3d499ee11
commit ac7c884023
3 changed files with 59 additions and 0 deletions

31
amrwb/.footprint Normal file
View File

@ -0,0 +1,31 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/amrwb-decoder
-rwxr-xr-x root/root usr/bin/amrwb-decoder-if2
-rwxr-xr-x root/root usr/bin/amrwb-encoder
-rwxr-xr-x root/root usr/bin/amrwb-encoder-if2
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/amrwb/
-rw-r--r-- root/root usr/include/amrwb/dec.h
-rw-r--r-- root/root usr/include/amrwb/dec_acelp.h
-rw-r--r-- root/root usr/include/amrwb/dec_dtx.h
-rw-r--r-- root/root usr/include/amrwb/dec_gain.h
-rw-r--r-- root/root usr/include/amrwb/dec_if.h
-rw-r--r-- root/root usr/include/amrwb/dec_lpc.h
-rw-r--r-- root/root usr/include/amrwb/dec_main.h
-rw-r--r-- root/root usr/include/amrwb/dec_util.h
-rw-r--r-- root/root usr/include/amrwb/enc.h
-rw-r--r-- root/root usr/include/amrwb/enc_acelp.h
-rw-r--r-- root/root usr/include/amrwb/enc_dtx.h
-rw-r--r-- root/root usr/include/amrwb/enc_gain.h
-rw-r--r-- root/root usr/include/amrwb/enc_if.h
-rw-r--r-- root/root usr/include/amrwb/enc_lpc.h
-rw-r--r-- root/root usr/include/amrwb/enc_main.h
-rw-r--r-- root/root usr/include/amrwb/enc_util.h
-rw-r--r-- root/root usr/include/amrwb/if_rom.h
-rw-r--r-- root/root usr/include/amrwb/typedef.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libamrwb.la
lrwxrwxrwx root/root usr/lib/libamrwb.so -> libamrwb.so.3.0.0
lrwxrwxrwx root/root usr/lib/libamrwb.so.3 -> libamrwb.so.3.0.0
-rwxr-xr-x root/root usr/lib/libamrwb.so.3.0.0

2
amrwb/.md5sum Normal file
View File

@ -0,0 +1,2 @@
2e5098687d3007a05b7acc8298a5b072 26204-700.zip
5ffbc49146b0bb09b5d7f0ec68de1fe7 amrwb-7.0.0.3.tar.bz2

26
amrwb/Pkgfile Normal file
View File

@ -0,0 +1,26 @@
# Description: Wrapper library for 3GPP Adaptive Multi-Rate Wideband Floating-point Speech Codec.
# URL: http://www.penguin.cz/~utx/amr
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
# Depends 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
}