19 lines
415 B
Plaintext
19 lines
415 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.24
|
|
release=1
|
|
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name
|
|
chmod +x bootstrap
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
make CFLAGS="$CFLAGS"
|
|
make prefix=$PKG/usr install
|
|
}
|