libepoxy: initial commit.

This commit is contained in:
Fredrik Rinnestam 2014-07-19 16:41:13 +02:00
parent 4b3d75653a
commit 5cd186a6e1
3 changed files with 34 additions and 0 deletions

16
libepoxy/.footprint Normal file

@ -0,0 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/epoxy/
-rw-r--r-- root/root usr/include/epoxy/egl.h
-rw-r--r-- root/root usr/include/epoxy/egl_generated.h
-rw-r--r-- root/root usr/include/epoxy/gl.h
-rw-r--r-- root/root usr/include/epoxy/gl_generated.h
-rw-r--r-- root/root usr/include/epoxy/glx.h
-rw-r--r-- root/root usr/include/epoxy/glx_generated.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libepoxy.la
lrwxrwxrwx root/root usr/lib/libepoxy.so -> libepoxy.so.0.0.0
lrwxrwxrwx root/root usr/lib/libepoxy.so.0 -> libepoxy.so.0.0.0
-rwxr-xr-x root/root usr/lib/libepoxy.so.0.0.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/epoxy.pc

1
libepoxy/.md5sum Normal file

@ -0,0 +1 @@
12d6b7621f086c0c928887c27d90bc30 libepoxy-1.2.tar.gz

17
libepoxy/Pkgfile Normal file

@ -0,0 +1,17 @@
# Description: A library for handling OpenGL function pointer management
# URL: https://github.com/anholt/libepoxy
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
# Depends on: mesa3d
name=libepoxy
version=1.2
release=1
source=(http://crux.nu/files/libepoxy-$version.tar.gz)
build() {
cd libepoxy-$version
./autogen.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}