18 lines
451 B
Plaintext
18 lines
451 B
Plaintext
# Description: A library for handling OpenGL function pointer management
|
|
# URL: https://github.com/anholt/libepoxy
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: mesa3d
|
|
|
|
name=libepoxy
|
|
version=1.5.3
|
|
release=1
|
|
source=(https://github.com/anholt/libepoxy/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
meson build --prefix /usr
|
|
ninja -C build -j ${JOBS:-1}
|
|
DESTDIR=$PKG ninja -C build install
|
|
}
|