libelf: initial import

This commit is contained in:
Fredrik Rinnestam 2013-09-19 18:00:46 +02:00
parent 0ccd77d10d
commit 3fce376473
5 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/
-rw-r--r-- root/root usr/lib/libelf.a
lrwxrwxrwx root/root usr/lib/libelf.so -> libelf.so.0.8.13
lrwxrwxrwx root/root usr/lib/libelf.so.0 -> libelf.so.0.8.13
-rwxr-xr-x root/root usr/lib/libelf.so.0.8.13
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libelf.pc

View File

@ -0,0 +1,3 @@
.md5sum
Pkgfile
.footprint

1
libelf/.httpup-urlinfo Normal file
View File

@ -0,0 +1 @@
http://falcony.googlecode.com/svn/trunk/falcony/#libelf

1
libelf/.md5sum Normal file
View File

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

18
libelf/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: ELF object file access library
# URL: http://www.mr511.de/software/
# Packager : Maxim Falcony, falcony at users dot sourceforge dot net
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
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 --disable-nls
make -j1
make instroot=$PKG install
}