blob: a05b7e2a38237be0b0bc3d750595c1a8866546ea (
plain)
1 # Description: An HE, LC, MAIN and LTP profile MPEG2 and MPEG-4 AAC decoder
2 # URL: http://www.audiocoding.com/
3 # Maintainer: Matt Housh, jaeger at morpheus dot net
4 # Depends on: libsndfile, id3lib, libmp4v2
5
6 name=faad2
7 version=2.0
8 release=3
9 source=(http://dl.sourceforge.net/sourceforge/faac/${name}-${version}.tar.gz \
10 $name-$version-gcc4.patch)
11
12 build() {
13 cd $name
14 patch -p1 -i $SRC/$name-$version-gcc4.patch
15 touch INSTALL
16 chmod +x bootstrap
17 ./bootstrap
18 ./configure --prefix=/usr \
19 --enable-mp4v2
20 (cd libfaad && make DESTDIR=$PKG install)
21 (cd common && make DESTDIR=$PKG install)
22 install -m 0644 common/mp4ff/mp4ff_int_types.h $PKG/usr/include
23 }
|