blob: aafaf5b1aa30869b51621ec2718b928815e87296 (
plain)
1 # Description: Multi-Language Vulkan/GL/GLES/EGL/GLX/WGL Loader-Generator based on the official specs
2 # URL: https://github.com/Dav1dde/glad/blob/glad2
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-jinja2
5
6 name=glad
7 version=2.0.2
8 release=1
9 source=(https://github.com/Dav1dde/glad/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 /usr/bin/python3 setup.py build
15 /usr/bin/python3 setup.py install --prefix=/usr \
16 --root=$PKG \
17 --skip-build
18 }
|