summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2011-10-15 16:33:24 +0200
committertnut <tnut at nutyx dot com>2011-10-15 16:33:24 +0200
commitd374919b560f6d9eabe1a6d576637cbe1659946e (patch)
treeac40144592a93df1c0bb70f32e19eb7810006e3d /base
parent2a5b02fc5a8fb58cddcecba571aad5dead2e1baa (diff)
downloadnutyx-extra-d374919b560f6d9eabe1a6d576637cbe1659946e.tar.gz
nutyx-extra-d374919b560f6d9eabe1a6d576637cbe1659946e.tar.bz2
nutyx-extra-d374919b560f6d9eabe1a6d576637cbe1659946e.tar.xz
nutyx-extra-d374919b560f6d9eabe1a6d576637cbe1659946e.zip
libmad dans extra
Diffstat (limited to 'base')
-rw-r--r--base/libmad/.footprint.i68611
-rw-r--r--base/libmad/.footprint.x86_6411
-rw-r--r--base/libmad/.md5sum.i6862
-rw-r--r--base/libmad/.md5sum.x86_642
-rwxr-xr-xbase/libmad/Pkgfile36
5 files changed, 0 insertions, 62 deletions
diff --git a/base/libmad/.footprint.i686 b/base/libmad/.footprint.i686
deleted file mode 100644
index 0325aa9ae..000000000
--- a/base/libmad/.footprint.i686
+++ /dev/null
@@ -1,11 +0,0 @@
-drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/include/
--rw-r--r-- root/root usr/include/mad.h
-drwxr-xr-x root/root usr/lib/
--rw-r--r-- root/root usr/lib/libmad.a
--rwxr-xr-x root/root usr/lib/libmad.la
-lrwxrwxrwx root/root usr/lib/libmad.so -> libmad.so.0.2.1
-lrwxrwxrwx root/root usr/lib/libmad.so.0 -> libmad.so.0.2.1
--rwxr-xr-x root/root usr/lib/libmad.so.0.2.1
-drwxr-xr-x root/root usr/lib/pkgconfig/
--rw-r--r-- root/root usr/lib/pkgconfig/mad.pc
diff --git a/base/libmad/.footprint.x86_64 b/base/libmad/.footprint.x86_64
deleted file mode 100644
index 0325aa9ae..000000000
--- a/base/libmad/.footprint.x86_64
+++ /dev/null
@@ -1,11 +0,0 @@
-drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/include/
--rw-r--r-- root/root usr/include/mad.h
-drwxr-xr-x root/root usr/lib/
--rw-r--r-- root/root usr/lib/libmad.a
--rwxr-xr-x root/root usr/lib/libmad.la
-lrwxrwxrwx root/root usr/lib/libmad.so -> libmad.so.0.2.1
-lrwxrwxrwx root/root usr/lib/libmad.so.0 -> libmad.so.0.2.1
--rwxr-xr-x root/root usr/lib/libmad.so.0.2.1
-drwxr-xr-x root/root usr/lib/pkgconfig/
--rw-r--r-- root/root usr/lib/pkgconfig/mad.pc
diff --git a/base/libmad/.md5sum.i686 b/base/libmad/.md5sum.i686
deleted file mode 100644
index 21e2d9857..000000000
--- a/base/libmad/.md5sum.i686
+++ /dev/null
@@ -1,2 +0,0 @@
-1be543bc30c56fb6bea1d7bf6a64e66c libmad-0.15.1b.tar.gz
-2612dee908a8ab4ceae5c7e552c70ab0 libmad.patch
diff --git a/base/libmad/.md5sum.x86_64 b/base/libmad/.md5sum.x86_64
deleted file mode 100644
index 21e2d9857..000000000
--- a/base/libmad/.md5sum.x86_64
+++ /dev/null
@@ -1,2 +0,0 @@
-1be543bc30c56fb6bea1d7bf6a64e66c libmad-0.15.1b.tar.gz
-2612dee908a8ab4ceae5c7e552c70ab0 libmad.patch
diff --git a/base/libmad/Pkgfile b/base/libmad/Pkgfile
deleted file mode 100755
index 8ffe19563..000000000
--- a/base/libmad/Pkgfile
+++ /dev/null
@@ -1,36 +0,0 @@
-# Description: Décodeur MPEG audio de haute qualité
-# URL: http://www.underbit.com/products/mad/
-# Maintainer: NuTyX core team
-# Packager: thierryn1 at hispeed dot ch
-
-name=libmad
-version=0.15.1b
-release=2
-source=(ftp://ftp.mars.org/pub/mpeg/$name-$version.tar.gz\
- http://nutyx.meticul.eu/files/patchs/$name/libmad.patch)
-
-
-build() {
- cd $name-$version
- patch -Np1 -i ../libmad.patch
- ./configure --prefix=/usr \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info
- make
- make DESTDIR=$PKG install
- mkdir -p $PKG/usr/lib/pkgconfig
-cat > $PKG/usr/lib/pkgconfig/mad.pc << "EOF"
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/lib
-includedir=${prefix}/include
-
-Name: mad
-Description: MPEG audio decoder
-Requires:
-Version: #version#
-Libs: -L${libdir} -lmad
-Cflags: -I${includedir}
-EOF
-sed -i "s/#version#/$version/" $PKG/usr/lib/pkgconfig/mad.pc
-}