diff options
author | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:49:01 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:49:01 +0200 |
commit | e7db446fc47536847e52087454509656d380ee73 (patch) | |
tree | 60893f55cdd6476416b887d1b9669489c6244964 /lame | |
parent | 0b22db24e1e99e86ad5dbf09cd07e3d75a49cea8 (diff) | |
download | nutyx-pakxe-e7db446fc47536847e52087454509656d380ee73.tar.gz nutyx-pakxe-e7db446fc47536847e52087454509656d380ee73.tar.bz2 nutyx-pakxe-e7db446fc47536847e52087454509656d380ee73.tar.xz nutyx-pakxe-e7db446fc47536847e52087454509656d380ee73.zip |
lame, ajout
Diffstat (limited to 'lame')
-rw-r--r-- | lame/.footprint.i686 | 16 | ||||
-rw-r--r-- | lame/.footprint.x86_64 | 16 | ||||
-rw-r--r-- | lame/.md5sum.i686 | 1 | ||||
-rw-r--r-- | lame/.md5sum.x86_64 | 1 | ||||
-rwxr-xr-x | lame/Pkgfile | 25 |
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 +} |