forked from ports/contrib
21 lines
540 B
Plaintext
21 lines
540 B
Plaintext
# Description: Free MPEG-4 audio codecs from AudioCoding.com
|
|
# URL: http://www.audiocoding.com/
|
|
# Maintainer: Matt Housh, jaeger at morpheus dot net
|
|
# Depends on: faad2
|
|
|
|
name=faac
|
|
version=1.28
|
|
release=2
|
|
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.bz2 \
|
|
$name-$version-external-libmp4v2.patch)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
patch -p1 -i $SRC/$name-$version-external-libmp4v2.patch
|
|
chmod +x bootstrap
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make CFLAGS="$CFLAGS"
|
|
make prefix=$PKG/usr mandir=$PKG/usr/man install
|
|
}
|