diff options
author | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 13:00:00 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 13:00:00 +0200 |
commit | 647091f1aa368733dae43b5f67091ecd10a7505a (patch) | |
tree | 13ab23fbde80a57d1a8b73aec0a828178033e2d9 | |
parent | 96b0eb503ba090e8f4787eb16cee86ebbcdb4118 (diff) | |
download | nutyx-pakxe-647091f1aa368733dae43b5f67091ecd10a7505a.tar.gz nutyx-pakxe-647091f1aa368733dae43b5f67091ecd10a7505a.tar.bz2 nutyx-pakxe-647091f1aa368733dae43b5f67091ecd10a7505a.tar.xz nutyx-pakxe-647091f1aa368733dae43b5f67091ecd10a7505a.zip |
faac, ajout
-rw-r--r-- | faac/.footprint.i686 | 16 | ||||
-rw-r--r-- | faac/.footprint.x86_64 | 16 | ||||
-rw-r--r-- | faac/.md5sum.i686 | 1 | ||||
-rw-r--r-- | faac/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | faac/Pkgfile | 25 |
5 files changed, 59 insertions, 0 deletions
diff --git a/faac/.footprint.i686 b/faac/.footprint.i686 new file mode 100644 index 000000000..45d36fe91 --- /dev/null +++ b/faac/.footprint.i686 @@ -0,0 +1,16 @@ +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 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/faac.1.gz diff --git a/faac/.footprint.x86_64 b/faac/.footprint.x86_64 new file mode 100644 index 000000000..45d36fe91 --- /dev/null +++ b/faac/.footprint.x86_64 @@ -0,0 +1,16 @@ +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 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/faac.1.gz diff --git a/faac/.md5sum.i686 b/faac/.md5sum.i686 new file mode 100644 index 000000000..6a89f344b --- /dev/null +++ b/faac/.md5sum.i686 @@ -0,0 +1 @@ +80763728d392c7d789cde25614c878f6 faac-1.28.tar.gz diff --git a/faac/.md5sum.x86_64 b/faac/.md5sum.x86_64 new file mode 100644 index 000000000..6a89f344b --- /dev/null +++ b/faac/.md5sum.x86_64 @@ -0,0 +1 @@ +80763728d392c7d789cde25614c878f6 faac-1.28.tar.gz diff --git a/faac/Pkgfile b/faac/Pkgfile new file mode 100755 index 000000000..42855e511 --- /dev/null +++ b/faac/Pkgfile @@ -0,0 +1,25 @@ +# 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 +# Run on: faad2,libmp4v2 + +name=faac +version=1.28 +release=1 +source=(http://heanet.dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz) + + +build() { + cd $name-$version + 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 +} + |