wok view python-pyst2/receipt @ rev 25690

mmv: inserted current_version()
author Hans-G?nter Theisgen
date Mon Apr 15 15:20:24 2024 +0100 (7 weeks ago)
parents 6039063278b9
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pyst2"
4 VERSION="0.5.1"
5 CATEGORY="development"
6 SHORT_DESC="A Python Interface to Asterisk."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL"
9 WEB_SITE="https://pypi.org/project/pyst2/"
10 REPOLOGY="python:pyst2"
12 SOURCE="pyst2"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
16 DEPENDS="python"
17 BUILD_DEPENDS="python-setuptools"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - https://github.com/jfernandz/pyst2/tags 2>/dev/null | \
23 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py install --prefix=/usr --root=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cp -a $install/usr $fs
36 }