summaryrefslogtreecommitdiffstats
path: root/extra/liba52/Pkgfile
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-10 23:29:56 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-10 23:29:56 +0200
commit9854588ea1431f391d5d9003c5811ca4925c703f (patch)
tree73c48875f8ce0e27106176f2c468b11ebc27b4a2 /extra/liba52/Pkgfile
parent63f623d5fce276403581820cab084c38c7fc477a (diff)
downloadnutyx-pakxe-9854588ea1431f391d5d9003c5811ca4925c703f.tar.gz
nutyx-pakxe-9854588ea1431f391d5d9003c5811ca4925c703f.tar.bz2
nutyx-pakxe-9854588ea1431f391d5d9003c5811ca4925c703f.tar.xz
nutyx-pakxe-9854588ea1431f391d5d9003c5811ca4925c703f.zip
Ajout de liba52#0.7.4-3
Diffstat (limited to 'extra/liba52/Pkgfile')
-rwxr-xr-xextra/liba52/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/extra/liba52/Pkgfile b/extra/liba52/Pkgfile
new file mode 100755
index 000000000..5bd07b9f1
--- /dev/null
+++ b/extra/liba52/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Permet de décoder le codec ATSC (AC3)
+# URL: http://liba52.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=liba52
+version=0.7.4
+release=3
+source=(http://liba52.sourceforge.net/files/a52dec-$version.tar.gz \
+ a52dec-0.7.4-build.patch)
+
+build() {
+ cd a52dec-$version
+ patch -Np1 -i ../a52dec-0.7.4-build.patch
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --enable-shared \
+ --enable-double
+ make -j3
+ make DESTDIR=$PKG install
+ # required for xine-lib
+ install -m644 liba52/a52_internal.h $PKG/usr/include/a52dec/
+}