44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Template file for 'libglvnd'
|
|
pkgname=libglvnd
|
|
version=1.4.0
|
|
revision=1
|
|
wrksrc="libglvnd-v${version}"
|
|
build_style=meson
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libXext-devel libX11-devel xorgproto"
|
|
checkdepends="xvfb-run"
|
|
short_desc="GL Vendor-Neutral Dispatch library"
|
|
maintainer="Stefano Ragni <st3r4g@protonmail.com>"
|
|
license="custom:MIT-alike"
|
|
homepage="https://gitlab.freedesktop.org/glvnd/libglvnd"
|
|
distfiles="https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v${version}/libglvnd-v${version}.tar.gz"
|
|
checksum=33b8b993adf47a21bc1c46bcf970927edeb9884390d5b09b1aed051d600c0b2f
|
|
|
|
provides="libGL-7.11_1 libEGL-7.11_1 libGLES-7.11_1"
|
|
replaces="libGL>=0 libEGL>=0 libGLES>=0"
|
|
|
|
# tls asm requires initial-exec, disable asm for musl
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl|arm*|mips*) configure_args+=" -Dasm=disabled";;
|
|
esac
|
|
|
|
do_check() {
|
|
xvfb-run ninja -C build test
|
|
}
|
|
|
|
post_install() {
|
|
grep -A 25 "Copyright (c) 2013, NVIDIA CORPORATION." README.md > LICENSE
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libglvnd-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
conflicts="MesaLib-devel<19.2.5_2"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|