diff options
author | Tim Biermann <tbier@posteo.de> | 2022-02-17 14:18:12 +0100 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2022-02-17 14:18:12 +0100 |
commit | 7e5d7f10c80d76bdbcca1ae8367ba57566399b77 (patch) | |
tree | 4d37abad3152f9ff7686f2393f0b6cc945be81b0 /glu | |
parent | 5026e0adcbedf3eb34ee89a5f272089a2be20bb7 (diff) | |
download | xorg-7e5d7f10c80d76bdbcca1ae8367ba57566399b77.tar.gz xorg-7e5d7f10c80d76bdbcca1ae8367ba57566399b77.tar.xz |
glu: now uses meson
Diffstat (limited to 'glu')
-rw-r--r-- | glu/.footprint | 4 | ||||
-rw-r--r-- | glu/.signature | 6 | ||||
-rw-r--r-- | glu/Pkgfile | 15 |
3 files changed, 14 insertions, 11 deletions
diff --git a/glu/.footprint b/glu/.footprint index ffd70da4..724fd562 100644 --- a/glu/.footprint +++ b/glu/.footprint @@ -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/ diff --git a/glu/.signature b/glu/.signature index 93e0d026..5c2e05d4 100644 --- a/glu/.signature +++ b/glu/.signature @@ -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 diff --git a/glu/Pkgfile b/glu/Pkgfile index 8fce101b..296acd16 100644 --- a/glu/Pkgfile +++ b/glu/Pkgfile @@ -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 } |