diff options
author | tnut <tnut at nutyx dot com> | 2011-10-15 16:23:46 +0200 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2011-10-15 16:23:46 +0200 |
commit | 242aab8a3473e4a546f7d16ea8ae917818224f4e (patch) | |
tree | 3f8c44ba2767890685fa4ffba0143b39317b8741 /extra | |
parent | ba5220d17f74c95dfb9ada3491f4eb349ce92c90 (diff) | |
download | nutyx-pakxe-242aab8a3473e4a546f7d16ea8ae917818224f4e.tar.gz nutyx-pakxe-242aab8a3473e4a546f7d16ea8ae917818224f4e.tar.bz2 nutyx-pakxe-242aab8a3473e4a546f7d16ea8ae917818224f4e.tar.xz nutyx-pakxe-242aab8a3473e4a546f7d16ea8ae917818224f4e.zip |
lame dans extra
Diffstat (limited to 'extra')
-rw-r--r-- | extra/lame/.footprint.i686 | 16 | ||||
-rw-r--r-- | extra/lame/.footprint.x86_64 | 16 | ||||
-rw-r--r-- | extra/lame/.md5sum.i686 | 1 | ||||
-rw-r--r-- | extra/lame/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | extra/lame/Pkgfile | 25 |
5 files changed, 59 insertions, 0 deletions
diff --git a/extra/lame/.footprint.i686 b/extra/lame/.footprint.i686 new file mode 100644 index 000000000..cc01d1e4c --- /dev/null +++ b/extra/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/extra/lame/.footprint.x86_64 b/extra/lame/.footprint.x86_64 new file mode 100644 index 000000000..cc01d1e4c --- /dev/null +++ b/extra/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/extra/lame/.md5sum.i686 b/extra/lame/.md5sum.i686 new file mode 100644 index 000000000..f17202430 --- /dev/null +++ b/extra/lame/.md5sum.i686 @@ -0,0 +1 @@ +8e9866ad6b570c6c95c8cba48060473f lame-3.98.4.tar.gz diff --git a/extra/lame/.md5sum.x86_64 b/extra/lame/.md5sum.x86_64 new file mode 100644 index 000000000..f17202430 --- /dev/null +++ b/extra/lame/.md5sum.x86_64 @@ -0,0 +1 @@ +8e9866ad6b570c6c95c8cba48060473f lame-3.98.4.tar.gz diff --git a/extra/lame/Pkgfile b/extra/lame/Pkgfile new file mode 100755 index 000000000..30e0f28ba --- /dev/null +++ b/extra/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 +} |