wok view python-phonenumbers/receipt @ rev 25218

updated python-phonenumbers (8.12.1 -> 8.12.40)
author Hans-G?nter Theisgen
date Wed Jul 13 15:39:54 2022 +0100 (22 months ago)
parents 076f424196b2
children
line source
1 # SliTaz package receipt.
3 PACKAGE="python-phonenumbers"
4 VERSION="8.12.40"
5 CATEGORY="development"
6 SHORT_DESC="Common library for parsing, formatting, storing and validating international phone numbers."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 WEB_SITE="https://pypi.org/project/phonenumbers/"
10 REPOLOGY="python:phonenumbers"
12 SOURCE="phonenumbers"
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 python-dev"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - $WEB_SITE 2>/dev/null | sed "/$SOURCE [0-9]/!d;s|.*$SOURCE ||;s|<.*||"
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 python setup.py build &&
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 }