wok annotate python-mako/receipt @ rev 25691

Up lynis (3.1.1), ncurses-examples (20211021)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 16 10:43:04 2024 +0000 (7 weeks ago)
parents d7522d21c4d3
children
rev   line source
taziden@3777 1 # SliTaz package receipt.
taziden@3777 2
taziden@3777 3 PACKAGE="python-mako"
Hans-G?nter@25202 4 VERSION="1.1.6"
taziden@3777 5 CATEGORY="development"
Hans-G?nter@23505 6 TAGS="python"
Hans-G?nter@23505 7 SHORT_DESC="Fast template library."
taziden@3777 8 MAINTAINER="taziden@slitaz.org"
pascal@15378 9 LICENSE="MIT"
Hans-G?nter@25202 10 WEB_SITE="https://pypi.org/project/Mako/"
Hans-G?nter@25202 11 REPOLOGY="python:mako"
Hans-G?nter@23505 12
taziden@3777 13 SOURCE="Mako"
taziden@3777 14 TARBALL="$SOURCE-$VERSION.tar.gz"
Hans-G?nter@25202 15 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
taziden@3777 16
pascal@15378 17 DEPENDS="python"
pascal@21582 18 BUILD_DEPENDS="python python-dev python-setuptools"
pascal@15378 19
pascal@24500 20 # What is the latest version available today?
pascal@24500 21 current_version()
pascal@24500 22 {
pascal@24500 23 wget -O - https://pypi.org/project/Mako/ 2>/dev/null | \
pascal@24500 24 sed '/Mako [0-9]/!d;s|.*Mako ||;q'
pascal@24500 25 }
pascal@24500 26
taziden@3777 27 # Rules to configure and make the package.
taziden@3777 28 compile_rules()
taziden@3777 29 {
al@18077 30 python setup.py install --root=$DESTDIR
taziden@3777 31 }
taziden@3777 32
taziden@3777 33 # Rules to gen a SliTaz package suitable for Tazpkg.
taziden@3777 34 genpkg_rules()
taziden@3777 35 {
Hans-G?nter@23505 36 cp -a $install/usr $fs
taziden@3777 37 }