summaryrefslogtreecommitdiffstats
path: root/faac/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'faac/Pkgfile')
-rwxr-xr-xfaac/Pkgfile25
1 files changed, 25 insertions, 0 deletions
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
+}
+