wok view python-ply/receipt @ rev 24347

Up expat (2.4.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 02 09:41:22 2022 +0000 (2022-02-02)
parents 12c4c5c2917b
children 076f424196b2
line source
1 # SliTaz package receipt.
3 PACKAGE="python-ply"
4 VERSION="3.11"
5 CATEGORY="development"
6 TAGS="python"
7 SHORT_DESC="lex and yacc implementation for Python."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="https://pypi.org/project/ply/"
12 SOURCE="ply"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="http://www.dabeaz.com/$SOURCE/$TARBALL"
16 DEPENDS="python"
17 BUILD_DEPENDS="python python-dev python-setuptools"
19 HOST_ARCH="i486 arm"
21 current_version()
22 {
23 wget -O - $WEB_SITE 2>/dev/null | sed '/, version /!d;s|.*version ||;s|<.*||'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py install --root=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/usr $fs
36 }