compat-32/libglvnd-32/Pkgfile

22 lines
553 B
Plaintext
Raw Normal View History

# Description: The GL Vendor-Neutral Dispatch library
# URL: https://github.com/NVIDIA/libglvnd
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
2019-08-27 13:48:19 +02:00
# Depends on: libglvnd xorg-libxext-32
name=libglvnd-32
2023-09-13 19:15:47 +02:00
version=1.7.0
release=1
source=(https://github.com/NVIDIA/${name%-32}/archive/v$version/${name%-32}-$version.tar.gz)
build() {
cd ${name%-32}-$version
./autogen.sh
./configure --prefix=/usr \
2019-10-19 17:33:21 +02:00
--disable-headers \
--build=i686-unknown-linux-gnu \
--libdir=/usr/lib32
make
make DESTDIR=$PKG install
rm -r $PKG/usr/include
}