wok-current annotate python-pyst2/receipt @ rev 25119
updated peazip (6.8.0 -> 8.4.0)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jun 26 09:56:47 2022 +0100 (2022-06-26) |
parents | 5ea0ce1cecc0 |
children | 6039063278b9 |
rev | line source |
---|---|
pascal@20292 | 1 # SliTaz package receipt. |
pascal@20292 | 2 |
pascal@20292 | 3 PACKAGE="python-pyst2" |
pascal@20292 | 4 VERSION="0.5.0" |
pascal@20292 | 5 CATEGORY="development" |
pascal@20292 | 6 SHORT_DESC="A Python Interface to Asterisk" |
pascal@20292 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@20292 | 8 LICENSE="LGPL" |
pascal@20292 | 9 WEB_SITE="https://pypi.org/project/pyst2/" |
pascal@20292 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20292 | 11 WGET_URL="https://github.com/rdegges/pyst2/archive/$VERSION.tar.gz" |
pascal@20292 | 12 |
pascal@20292 | 13 DEPENDS="python" |
pascal@21582 | 14 BUILD_DEPENDS="python-setuptools" |
pascal@20292 | 15 |
pascal@24055 | 16 current_version() |
pascal@24055 | 17 { |
pascal@24299 | 18 wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ |
pascal@24055 | 19 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 20 } |
pascal@24055 | 21 |
pascal@20292 | 22 # Rules to configure and make the package. |
pascal@20292 | 23 compile_rules() |
pascal@20292 | 24 { |
pascal@20292 | 25 python setup.py install --prefix=/usr --root=$DESTDIR |
pascal@20292 | 26 } |
pascal@20292 | 27 |
pascal@20292 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@20292 | 29 genpkg_rules() |
pascal@20292 | 30 { |
pascal@20292 | 31 cp -a $install/usr $fs/ |
pascal@20292 | 32 } |