diff options
author | sibelle <lesibel@free.fr> | 2010-02-07 07:53:27 +0100 |
---|---|---|
committer | sibelle <lesibel@free.fr> | 2010-02-07 07:53:27 +0100 |
commit | 8bd84b0edf380f00244be29090ce68f8b34456cc (patch) | |
tree | fba27cbe07e4774fcdd6443dead12a468d004c0e /base/libelf | |
parent | 53bff858c3ef02bf7ba9ee0e247488fc54f7c42e (diff) | |
parent | 5bd127c0743239bc774481e4a7b947719c984f5d (diff) | |
download | nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.gz nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.bz2 nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.tar.xz nutyx-pakxe-8bd84b0edf380f00244be29090ce68f8b34456cc.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'base/libelf')
-rw-r--r-- | base/libelf/.footprint | 18 | ||||
-rw-r--r-- | base/libelf/.md5sum | 1 | ||||
-rwxr-xr-x | base/libelf/Pkgfile | 21 |
3 files changed, 40 insertions, 0 deletions
diff --git a/base/libelf/.footprint b/base/libelf/.footprint new file mode 100644 index 000000000..12af65902 --- /dev/null +++ b/base/libelf/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/gelf.h +-rw-r--r-- root/root usr/include/libelf.h +drwxr-xr-x root/root usr/include/libelf/ +-rw-r--r-- root/root usr/include/libelf/elf_repl.h +-rw-r--r-- root/root usr/include/libelf/gelf.h +-rw-r--r-- root/root usr/include/libelf/libelf.h +-rw-r--r-- root/root usr/include/libelf/nlist.h +-rw-r--r-- root/root usr/include/libelf/sys_elf.h +-rw-r--r-- root/root usr/include/nlist.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libelf-0.8.10.so +-rw-r--r-- root/root usr/lib/libelf.a +lrwxrwxrwx root/root usr/lib/libelf.so -> libelf-0.8.10.so +lrwxrwxrwx root/root usr/lib/libelf.so.0 -> libelf-0.8.10.so +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libelf.pc diff --git a/base/libelf/.md5sum b/base/libelf/.md5sum new file mode 100644 index 000000000..489b01ee6 --- /dev/null +++ b/base/libelf/.md5sum @@ -0,0 +1 @@ +9db4d36c283d9790d8fa7df1f4d7b4d9 libelf-0.8.10.tar.gz diff --git a/base/libelf/Pkgfile b/base/libelf/Pkgfile new file mode 100755 index 000000000..e5e4747fb --- /dev/null +++ b/base/libelf/Pkgfile @@ -0,0 +1,21 @@ +# Description: Contient librairie audio +# URL: http://xiph.org/ao/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=libelf +version=0.8.10 +release=1 +source=( http://www.mr511.de/software/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --enable-shared \ + --enable-gnu-names \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make prefix=$PKG/usr install + rm -rf $PKG/usr/share +} |