libelf: initial import

This commit is contained in:
Danny Rawlins 2012-03-04 20:30:42 +11:00
parent 64f2d9674f
commit 6052abfa06
3 changed files with 41 additions and 0 deletions

18
libelf/.footprint Normal file
View File

@ -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.13.so
-rw-r--r-- root/root usr/lib/libelf.a
lrwxrwxrwx root/root usr/lib/libelf.so -> libelf-0.8.13.so
lrwxrwxrwx root/root usr/lib/libelf.so.0 -> libelf-0.8.13.so
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libelf.pc

1
libelf/.md5sum Normal file
View File

@ -0,0 +1 @@
4136d7b4c04df68b686570afa26988ac libelf-0.8.13.tar.gz

22
libelf/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# Description: A ELF object file access library.
# URL: http://www.mr511.de/software/english.html
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
# Packager: Matt Housh, jaeger at morpheus dot net
name=libelf
version=0.8.13
release=1
source=(http://www.mr511.de/software/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-shared \
--enable-gnu-names \
--disable-nls
make
make instroot=$PKG install
}