wok-6.x annotate python-opengl/receipt @ rev 24288

fail2ban: add log4j-jndi.conf
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 13 18:29:05 2022 +0000 (2022-01-13)
parents 122579ad0bb4
children 076f424196b2
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@24288 18 current_version()
pascal@24288 19 {
pascal@24288 20 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
pascal@24288 21 }
pascal@24288 22
yuripourre@18660 23 # Rules to configure and make the package.
yuripourre@18660 24 compile_rules()
yuripourre@18660 25 {
yuripourre@18660 26 {
yuripourre@18660 27 python setup.py build &&
yuripourre@18660 28 python setup.py install --root=$DESTDIR
yuripourre@18660 29 } 2>&1 | grep -Ev '(conftest.c:|configtest.c:)'
yuripourre@18660 30 }
yuripourre@18660 31
yuripourre@18660 32 # Rules to gen a SliTaz package suitable for Tazpkg.
yuripourre@18660 33 genpkg_rules()
yuripourre@18660 34 {
Hans-G?nter@23519 35 cp -a $install/usr $fs
yuripourre@18660 36 }