summaryrefslogtreecommitdiffstats
path: root/base/libmad/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-02-02 20:15:24 +0100
committertnut <thierryn1 at hispeed dot ch>2010-02-02 20:15:24 +0100
commit7ab7b078079db0ec8713067bd21d26fb1df8ff62 (patch)
treee68d262f40945e547a793b2475da447a74673248 /base/libmad/Pkgfile
parentae548101a52d2c728afad7bad76874baa5ffa6e1 (diff)
downloadnutyx-extra-7ab7b078079db0ec8713067bd21d26fb1df8ff62.tar.gz
nutyx-extra-7ab7b078079db0ec8713067bd21d26fb1df8ff62.tar.bz2
nutyx-extra-7ab7b078079db0ec8713067bd21d26fb1df8ff62.tar.xz
nutyx-extra-7ab7b078079db0ec8713067bd21d26fb1df8ff62.zip
libmad, déplacé dans base et nettoyage du paquet
Diffstat (limited to 'base/libmad/Pkgfile')
-rwxr-xr-xbase/libmad/Pkgfile36
1 files changed, 36 insertions, 0 deletions
diff --git a/base/libmad/Pkgfile b/base/libmad/Pkgfile
new file mode 100755
index 000000000..d97d7a4b5
--- /dev/null
+++ b/base/libmad/Pkgfile
@@ -0,0 +1,36 @@
+# 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\
+ 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
+}