summaryrefslogtreecommitdiffstats
path: root/extra/faac
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:22:03 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-10 21:22:03 +0200
commitbf75aa7776bdbad21abdf3fff6cf6b1ce220c265 (patch)
treebeae41aa6dd84a8e9a912c92602ac9e759a47005 /extra/faac
parentd1aa856727a6c4ca6ed8d7fe827c4ec0dc398363 (diff)
downloadnutyx-extra-bf75aa7776bdbad21abdf3fff6cf6b1ce220c265.tar.gz
nutyx-extra-bf75aa7776bdbad21abdf3fff6cf6b1ce220c265.tar.bz2
nutyx-extra-bf75aa7776bdbad21abdf3fff6cf6b1ce220c265.tar.xz
nutyx-extra-bf75aa7776bdbad21abdf3fff6cf6b1ce220c265.zip
Ajout de faac#1.26-1
Diffstat (limited to 'extra/faac')
-rw-r--r--extra/faac/.footprint12
-rw-r--r--extra/faac/.md5sum1
-rwxr-xr-xextra/faac/Pkgfile23
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
+}