xorg/libepoxy/Pkgfile

19 lines
485 B
Plaintext
Raw Normal View History

2014-07-19 16:41:13 +02:00
# 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: mesa
2014-07-19 16:41:13 +02:00
name=libepoxy
2019-12-30 15:01:41 +01:00
version=1.5.4
2019-07-25 00:01:47 +02:00
release=1
2018-07-25 13:27:35 +02:00
source=(https://github.com/anholt/libepoxy/releases/download/$version/$name-$version.tar.xz)
2014-07-19 16:41:13 +02:00
build() {
2020-11-04 17:24:56 +01:00
meson setup build $name-$version \
--prefix=/usr \
--buildtype=plain
2020-11-04 17:24:56 +01:00
meson compile -C build -j ${JOBS:-1}
DESTDIR=$PKG meson install -C build
2014-07-19 16:41:13 +02:00
}