glu: now uses meson

This commit is contained in:
Tim Biermann 2022-02-17 14:18:12 +01:00
parent 5026e0adcb
commit 7e5d7f10c8
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 14 additions and 11 deletions

View File

@ -3,9 +3,7 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/GL/
-rw-r--r-- root/root usr/include/GL/glu.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libGLU.a
-rwxr-xr-x root/root usr/lib/libGLU.la
lrwxrwxrwx root/root usr/lib/libGLU.so -> libGLU.so.1.3.1
lrwxrwxrwx root/root usr/lib/libGLU.so -> libGLU.so.1
lrwxrwxrwx root/root usr/lib/libGLU.so.1 -> libGLU.so.1.3.1
-rwxr-xr-x root/root usr/lib/libGLU.so.1.3.1
drwxr-xr-x root/root usr/lib/pkgconfig/

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/xorg.pub
RWTSGWF5Q7TndH2U1VqfYKoFaASXerE+G1EJiXQMpW1ffB/AsEbB7kS82vN0eaPSHBie6E7QbftiEr4GG/7DuLZPLb4RJQZObwo=
SHA256 (Pkgfile) = 0937c4b045fa6cfb8e67657856fd7df13e8e77d6ef396b3446fb24c4eb2071c1
SHA256 (.footprint) = cb2ee72709e2f240fae8f4d52abe4e011adf13802e97fb457bf16e0ceb9f6634
RWTSGWF5Q7TndDB2NZA8o10gHpw0Qu6viutZxROUvB+3+Kslo5l+wC9qaecbonwQ5Gv/IAWebskThytZTmw9n6A//9BKCW0H8wo=
SHA256 (Pkgfile) = 35688949dc495c0202fea2ecc26bd31d9fe8aa17be30581dbcbaffbf6901b6e1
SHA256 (.footprint) = 090ca3c79aa179b390fec955d15c592849c5cb59dc72f5df16bf82284f6b19c2
SHA256 (glu-9.0.2.tar.xz) = 6e7280ff585c6a1d9dfcdf2fca489251634b3377bfc33c29e4002466a38d02d4

View File

@ -5,12 +5,17 @@
name=glu
version=9.0.2
release=1
release=2
source=(https://mesa.freedesktop.org/archive/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
meson build $name-$version \
--prefix /usr \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
-D default_library=shared
meson compile -C build
DESTDIR=$PKG meson install -C build
}