liboil: initial import (moved from contrib)

This commit is contained in:
Jose V Beneyto 2009-05-14 17:38:31 +00:00
parent 916bb713f7
commit 2eb0b4ba31
3 changed files with 54 additions and 0 deletions

30
liboil/.footprint Normal file
View File

@ -0,0 +1,30 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/oil-bugreport
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/liboil-0.3/
drwxr-xr-x root/root usr/include/liboil-0.3/liboil/
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboil-stdint.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboil.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilclasses.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilcpu.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboildebug.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilfault.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilfuncs.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilfunction.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilgcc.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilinternal.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilparameter.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilprofile.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilprototype.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilrandom.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboiltest.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboiltypes.h
-rw-r--r-- root/root usr/include/liboil-0.3/liboil/liboilutils.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/liboil-0.3.la
lrwxrwxrwx root/root usr/lib/liboil-0.3.so -> liboil-0.3.so.0.3.0
lrwxrwxrwx root/root usr/lib/liboil-0.3.so.0 -> liboil-0.3.so.0.3.0
-rwxr-xr-x root/root usr/lib/liboil-0.3.so.0.3.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/liboil-0.3.pc

1
liboil/.md5sum Normal file
View File

@ -0,0 +1 @@
febb1d9f9bc4c440fcf622dc90f8b6b7 liboil-0.3.16.tar.gz

23
liboil/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: A library of simple functions optimized for various CPUs.
# URL: http://liboil.freedesktop.org/wiki/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Matt Housh, jaeger at morpheus dot net
# Depends on: glib
name=liboil
version=0.3.16
release=1
source=(http://liboil.freedesktop.org/download/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--disable-gtk-doc
make
make check
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}