blob: 248e64e36f59cb01cbb152945cba8f52132dddb3 (
plain)
1 # Description: MPEG-4 audio codecs.
2 # URL: https://www.audiocoding.com/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=faac
6 version=1.30
7 release=2
8 source=(https://github.com/knik0/faac/archive/${version/./_}/$name-${version/./_}.tar.gz)
9
10 build() {
11 cd $name-${version/./_}
12
13 ./bootstrap
14 ./configure --prefix=/usr
15
16 make
17 make DESTDIR=$PKG install
18 }
|