wok view python-cffi/receipt @ rev 25166

updated python-cffi (1.12.3 -> 1.15.1)
author Hans-G?nter Theisgen
date Fri Jul 01 11:13:57 2022 +0100 (22 months ago)
parents 2f230197370e
children b81ceff0b056
line source
1 # SliTaz package receipt.
3 PACKAGE="python-cffi"
4 VERSION="1.15.1"
5 CATEGORY="development"
6 SHORT_DESC="C Foreign Function Interface for Python."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://pypi.org/project/cffi/"
10 REPOLOGY="python:cffi"
12 SOURCE="cffi"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$SOURCE-$VERSION.tar.gz"
16 DEPENDS="python"
17 BUILD_DEPENDS="python-dev python-setuptools"
19 # What is the latest version available today?
20 current_version()
21 {
22 wget -O - $WEB_SITE 2>/dev/null | \
23 sed '/html#v/!d;s|.*>v||;s|<.*||;q'
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 python setup.py \
30 install \
31 --prefix=/usr \
32 --root=$DESTDIR
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_folders lib
39 }