blob: 8528a6f9e41b67733566f65d0ab6eb68f73ce8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
MAKEDEPS="make xmlto"
DEPS="alsa-lib libsamplerate"
DESC="ISO AAC audio decoder"
PKG_VER=2_10_0
SOURCE=https://github.com/knik0/faad2/archive/$PKG_VER/faad2-$PKG_VER.tar.gz
build () {
./bootstrap &&
./configure --prefix=/usr --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|