libepoxy: ->

This commit is contained in:
Danny Rawlins 2018-07-25 21:27:35 +10:00
parent 7181b7751e
commit 2ba8671125
4 changed files with 17 additions and 16 deletions

View File

@ -1,16 +1,16 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/epoxy/
-rw-rw-r-- root/root usr/include/epoxy/common.h
-rw-rw-r-- root/root usr/include/epoxy/egl.h
-rw-r--r-- root/root usr/include/epoxy/common.h
-rw-r--r-- root/root usr/include/epoxy/egl.h
-rw-r--r-- root/root usr/include/epoxy/egl_generated.h
-rw-rw-r-- root/root usr/include/epoxy/gl.h
-rw-r--r-- root/root usr/include/epoxy/gl.h
-rw-r--r-- root/root usr/include/epoxy/gl_generated.h
-rw-rw-r-- root/root usr/include/epoxy/glx.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/
lrwxrwxrwx root/root usr/lib/libepoxy.so -> libepoxy.so.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-rw-r-- root/root usr/lib/pkgconfig/epoxy.pc
-rw-r--r-- root/root usr/lib/pkgconfig/epoxy.pc

View File

@ -1 +0,0 @@
af4c3ce0fb1143bdc4e43f85695a9bed libepoxy-1.4.3.tar.xz

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndEmNyhk7o3VNZKSotn/TE3vPlZrtSx5uDrD0Iy7Jnlp8lPeSN1nTbpV7Pv+0KthuTlGbdMMPZbFzj2olmrMO4wk=
SHA256 (Pkgfile) = 8afcd57ae510bc0b2247ce3a19f021e2d43eb501574c08496a8e1f95b8440a31
SHA256 (.footprint) = 21acafd5d89d33344efe3bcefc1e732045669116b8a35bb4a477c82db38ac811
RWTSGWF5Q7TndM5NVDshLu/+5AX7x7cBoHijfX51LgDJj92ZP5E4J3jE/XYRfLVEG5c8dXxAPQ8jEa8xSgDPyaT1dgdLJH9oIgk=
SHA256 (Pkgfile) = a5538a8789164462da67e951a2749bcefdc6516c50d2470c31c499c0e5bd5391
SHA256 (.footprint) = 471c84aa338d410fb303769346694314be9654be0e8690f3f2b3a893f28aa2d7
SHA256 (libepoxy-1.4.3.tar.xz) = 0b808a06c9685a62fca34b680abb8bc7fb2fda074478e329b063c1f872b826f6

View File

@ -5,14 +5,16 @@
name=libepoxy
version=1.4.3
release=1
source=(https://github.com/anholt/libepoxy/releases/download/$version/libepoxy-$version.tar.xz)
release=2
source=(https://github.com/anholt/libepoxy/releases/download/$version/$name-$version.tar.xz)
build() {
cd libepoxy-$version
cd $name-$version
mkdir _build && cd _build
meson --prefix /usr
ninja
DESTDIR=$PKG ninja install
meson build --prefix /usr
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
#remove this once everyone is on meson <= 0.47.1
chmod -R g-w $PKG
}