wok annotate python-opengl/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (2022-05-21)
parents 1df6fa555414
children
rev   line source
yuripourre@18660 1 # SliTaz package receipt.
yuripourre@18660 2
yuripourre@18660 3 PACKAGE="python-opengl"
Hans-G?nter@23519 4 VERSION="3.1.5"
yuripourre@18660 5 CATEGORY="development"
yuripourre@18660 6 SHORT_DESC="Cross platform Python binding to OpenGL."
yuripourre@18660 7 MAINTAINER="yuripourre@gmail.com"
yuripourre@18660 8 LICENSE="BSD"
Hans-G?nter@23519 9 WEB_SITE="https://pypi.org/project/PyOpenGL/"
Hans-G?nter@23519 10
Hans-G?nter@23519 11 SOURCE="PyOpenGL"
yuripourre@18660 12 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@23519 13 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
yuripourre@18660 14
Hans-G?nter@23519 15 DEPENDS="freeglut python python-numpy python-pil"
Hans-G?nter@23519 16 BUILD_DEPENDS="freeglut-dev python python-dev"
yuripourre@18660 17
pascal@24383 18 # What is the latest version available today?
pascal@24288 19 current_version()
pascal@24288 20 {
pascal@24383 21 wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||"
pascal@24288 22 }
pascal@24288 23
yuripourre@18660 24 # Rules to configure and make the package.
yuripourre@18660 25 compile_rules()
yuripourre@18660 26 {
yuripourre@18660 27 {
yuripourre@18660 28 python setup.py build &&
yuripourre@18660 29 python setup.py install --root=$DESTDIR
yuripourre@18660 30 } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
yuripourre@18660 31 }
yuripourre@18660 32
yuripourre@18660 33 # Rules to gen a SliTaz package suitable for Tazpkg.
yuripourre@18660 34 genpkg_rules()
yuripourre@18660 35 {
Hans-G?nter@23519 36 cp -a $install/usr $fs
yuripourre@18660 37 }