summaryrefslogtreecommitdiffstats
path: root/lame
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /lame
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'lame')
-rw-r--r--lame/.footprint.i68616
-rw-r--r--lame/.footprint.x86_6416
-rw-r--r--lame/.md5sum.i6861
-rw-r--r--lame/.md5sum.x86_641
-rwxr-xr-xlame/Pkgfile25
5 files changed, 59 insertions, 0 deletions
diff --git a/lame/.footprint.i686 b/lame/.footprint.i686
new file mode 100644
index 000000000..cc01d1e4c
--- /dev/null
+++ b/lame/.footprint.i686
@@ -0,0 +1,16 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/lame
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/lame/
+-rw-r--r-- root/root usr/include/lame/lame.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libmp3lame.a
+-rwxr-xr-x root/root usr/lib/libmp3lame.la
+lrwxrwxrwx root/root usr/lib/libmp3lame.so -> libmp3lame.so.0.0.0
+lrwxrwxrwx root/root usr/lib/libmp3lame.so.0 -> libmp3lame.so.0.0.0
+-rwxr-xr-x root/root usr/lib/libmp3lame.so.0.0.0
+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/lame.1.gz
diff --git a/lame/.footprint.x86_64 b/lame/.footprint.x86_64
new file mode 100644
index 000000000..cc01d1e4c
--- /dev/null
+++ b/lame/.footprint.x86_64
@@ -0,0 +1,16 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/lame
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/lame/
+-rw-r--r-- root/root usr/include/lame/lame.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libmp3lame.a
+-rwxr-xr-x root/root usr/lib/libmp3lame.la
+lrwxrwxrwx root/root usr/lib/libmp3lame.so -> libmp3lame.so.0.0.0
+lrwxrwxrwx root/root usr/lib/libmp3lame.so.0 -> libmp3lame.so.0.0.0
+-rwxr-xr-x root/root usr/lib/libmp3lame.so.0.0.0
+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/lame.1.gz
diff --git a/lame/.md5sum.i686 b/lame/.md5sum.i686
new file mode 100644
index 000000000..f17202430
--- /dev/null
+++ b/lame/.md5sum.i686
@@ -0,0 +1 @@
+8e9866ad6b570c6c95c8cba48060473f lame-3.98.4.tar.gz
diff --git a/lame/.md5sum.x86_64 b/lame/.md5sum.x86_64
new file mode 100644
index 000000000..f17202430
--- /dev/null
+++ b/lame/.md5sum.x86_64
@@ -0,0 +1 @@
+8e9866ad6b570c6c95c8cba48060473f lame-3.98.4.tar.gz
diff --git a/lame/Pkgfile b/lame/Pkgfile
new file mode 100755
index 000000000..30e0f28ba
--- /dev/null
+++ b/lame/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Encodeur et analyseur de trames MP3
+# URL: http://lame.sourceforge.net/index.php
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+
+name=lame
+version=3.98.4
+release=1
+source=(http://sourceforge.net/projects/$name/files/$name/$version/$name-$version.tar.gz)
+
+
+build() {
+ unset MAKEFLAGS
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --disable--analyzer-hooks \
+ --disable-gtktest \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info\
+ --enable-shared\
+ --enable-nasm
+ make
+ make DESTDIR=$PKG install
+ rm -rf $PKG/usr/share/doc
+}