add libglvnd

This commit is contained in:
Ella-0 2021-08-28 09:23:53 +00:00
parent 95b7b96c63
commit d81558e5bd

31
gui/libglvnd/build.sh Normal file
View file

@ -0,0 +1,31 @@
pkgname=libglvnd
pkgver=master
fetch() {
curl -L "https://github.com/NVIDIA/libglvnd/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
mkdir $pkgname-$pkgver/build
}
build() {
cd $pkgname-$pkgver
cd build
meson .. \
--buildtype=release \
--prefix=/usr \
--libexecdir=lib \
-Dtls=disabled
samu
}
package() {
cd $pkgname-$pkgver
cd build
DESTDIR=$pkgdir samu install
}
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}