wok view python-opengl/receipt @ rev 21600

Up: smplayer(19.5.0), xine-lib(1.2.9), xine-ui(0.99.10)
author maniac
date Thu May 23 12:16:28 2019 +0300 (2019-05-23)
parents 7cd0cf16851e
children 122579ad0bb4
line source
1 # SliTaz package receipt.
3 PACKAGE="python-opengl"
4 SOURCE="PyOpenGL"
5 VERSION="3.0.2"
6 CATEGORY="development"
7 SHORT_DESC="Cross platform Python binding to OpenGL."
8 MAINTAINER="yuripourre@gmail.com"
9 LICENSE="BSD"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://pyopengl.sf.net"
12 WGET_URL="https://pypi.python.org/packages/source/P/$SOURCE/$TARBALL"
14 DEPENDS="python python-numpy python-pil freeglut"
15 BUILD_DEPENDS="python python-dev freeglut-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 {
21 python setup.py build &&
22 python setup.py install --root=$DESTDIR
23 } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/usr $fs
30 }