summaryrefslogtreecommitdiff
path: root/repo/media/faac.xibuild
blob: 87fe760ace8f7661d0bce5809ff723297b99a89c (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="glibc"

DESC="Freeware Advanced Audio Coder"

PKG_VER=1_30
SOURCE=https://github.com/knik0/faac/archive/$PKG_VER/faac-$PKG_VER.tar.gz

build () {
    ./bootstrap                                &&
    ./configure --prefix=/usr --disable-static &&
    make
}

package () {
    make DESTDIR=$PKG_DEST install
}