diff options
Diffstat (limited to 'extra')
-rw-r--r-- | extra/faac/.footprint | 12 | ||||
-rw-r--r-- | extra/faac/.md5sum | 1 | ||||
-rwxr-xr-x | extra/faac/Pkgfile | 23 |
3 files changed, 36 insertions, 0 deletions
diff --git a/extra/faac/.footprint b/extra/faac/.footprint new file mode 100644 index 000000000..025c5f3e7 --- /dev/null +++ b/extra/faac/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/faac +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/faac.h +-rw-r--r-- root/root usr/include/faaccfg.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libfaac.a +-rwxr-xr-x root/root usr/lib/libfaac.la +lrwxrwxrwx root/root usr/lib/libfaac.so -> libfaac.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libfaac.so.0 -> libfaac.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libfaac.so.0.0.0 diff --git a/extra/faac/.md5sum b/extra/faac/.md5sum new file mode 100644 index 000000000..c66439ed6 --- /dev/null +++ b/extra/faac/.md5sum @@ -0,0 +1 @@ +1d7c019bd2dbb4f3101b8937ebc59cf6 faac-1.26.tar.gz diff --git a/extra/faac/Pkgfile b/extra/faac/Pkgfile new file mode 100755 index 000000000..79cf6119a --- /dev/null +++ b/extra/faac/Pkgfile @@ -0,0 +1,23 @@ +# Description: Encoder MPEG-4 de AudioCoding.com +# URL: http://www.audiocoding.com +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: faad2, libmp4v2 + +name=faac +version=1.26 +release=1 +source=(http://heanet.dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz) + + +build() { + cd $name + find . -type f -print0 | xargs -0 sed -i 's/\r//g' + chmod +x bootstrap + sh bootstrap + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --with-mp4v2 + make + make DESTDIR=$PKG install +} |