summaryrefslogtreecommitdiffstats
path: root/base/libdca
diff options
context:
space:
mode:
authorsibelle <lesibel@free.fr>2010-02-07 07:53:27 +0100
committersibelle <lesibel@free.fr>2010-02-07 07:53:27 +0100
commit8bd84b0edf380f00244be29090ce68f8b34456cc (patch)
treefba27cbe07e4774fcdd6443dead12a468d004c0e /base/libdca
parent53bff858c3ef02bf7ba9ee0e247488fc54f7c42e (diff)
parent5bd127c0743239bc774481e4a7b947719c984f5d (diff)
downloadnutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.gz
nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.bz2
nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.xz
nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.zip
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'base/libdca')
-rw-r--r--base/libdca/.footprint26
-rw-r--r--base/libdca/.md5sum1
-rwxr-xr-xbase/libdca/Pkgfile20
3 files changed, 47 insertions, 0 deletions
diff --git a/base/libdca/.footprint b/base/libdca/.footprint
new file mode 100644
index 000000000..865d5777f
--- /dev/null
+++ b/base/libdca/.footprint
@@ -0,0 +1,26 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/dcadec
+-rwxr-xr-x root/root usr/bin/dtsdec
+-rwxr-xr-x root/root usr/bin/extract_dca
+-rwxr-xr-x root/root usr/bin/extract_dts
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/dca.h
+-rw-r--r-- root/root usr/include/dts.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libdca.a
+-rwxr-xr-x root/root usr/lib/libdca.la
+lrwxrwxrwx root/root usr/lib/libdca.so -> libdca.so.0.0.0
+lrwxrwxrwx root/root usr/lib/libdca.so.0 -> libdca.so.0.0.0
+-rwxr-xr-x root/root usr/lib/libdca.so.0.0.0
+lrwxrwxrwx root/root usr/lib/libdts.a -> /usr/lib/libdca.a
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libdca.pc
+-rw-r--r-- root/root usr/lib/pkgconfig/libdts.pc
+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/dcadec.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/dtsdec.1.gz -> dcadec.1.gz
+-rw-r--r-- root/root usr/share/man/man1/extract_dca.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/extract_dts.1.gz -> extract_dca.1.gz
diff --git a/base/libdca/.md5sum b/base/libdca/.md5sum
new file mode 100644
index 000000000..d9f580634
--- /dev/null
+++ b/base/libdca/.md5sum
@@ -0,0 +1 @@
+dab6b2795c66a82a6fcd4f8343343021 libdca-0.0.5.tar.bz2
diff --git a/base/libdca/Pkgfile b/base/libdca/Pkgfile
new file mode 100755
index 000000000..1d342d517
--- /dev/null
+++ b/base/libdca/Pkgfile
@@ -0,0 +1,20 @@
+# Description: Contient librairie audio
+# URL: http://xiph.org/ao/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=libdca
+version=0.0.5
+release=1
+source=( http://download.videolan.org/pub/videolan/$name/$version/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+ make -j3
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/doc
+}