xorg/libglvnd/Pkgfile

23 lines
541 B
Plaintext
Raw Normal View History

# Description: The GL Vendor-Neutral Dispatch library
# URL: https://github.com/NVIDIA/libglvnd
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
2019-08-25 15:41:05 +02:00
# Depends on: xorg-libxext
name=libglvnd
2019-12-31 03:58:09 +01:00
version=1.3.0
release=1
source=(https://github.com/NVIDIA/$name/archive/v$version/$name-$version.tar.gz \
2019-12-31 03:58:09 +01:00
eglplatform.h)
build() {
cd $name-$version
autoreconf -if
./configure --prefix=/usr
make
make DESTDIR=$PKG install
# replace EGL/eglplatform.h with the newer mesa version
install -m 0644 $SRC/eglplatform.h $PKG/usr/include/EGL/
}