blob: 5871ae798e4bfc4952c3420a5b9682cbe939be56 (
plain)
1 # Description: The cross platform Python binding to OpenGL and related APIs
2 # URL: https://pypi.org/project/PyOpenGL/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: freeglut
5
6 name=python3-opengl
7 version=3.1.5
8 release=1
9 source=(https://pypi.python.org/packages/source/P/PyOpenGL/PyOpenGL-$version.tar.gz)
10
11 build() {
12 cd PyOpenGL-$version
13 python3 setup.py install --root=$PKG \
14 --optimize=1
15 }
|