19 lines
386 B
Plaintext
19 lines
386 B
Plaintext
# Description: AAC audio decoding library.
|
|
# URL: https://www.audiocoding.com/faad2.html
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
name=faad2
|
|
version=2.9.1
|
|
release=1
|
|
source=(https://github.com/knik0/$name/archive/${version//./_}/${name}_${version//./_}.tar.gz)
|
|
|
|
build() {
|
|
cd $name-${version//./_}
|
|
|
|
./bootstrap
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|