19 lines
364 B
Plaintext
19 lines
364 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.10.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
|
|
}
|