wok view py3k-cffi/receipt @ rev 25481

created recipe for py3k-cffi
author Hans-G?nter Theisgen
date Mon Oct 17 07:42:01 2022 +0100 (18 months ago)
parents
children 54d60b77baf4
line source
1 # SliTaz package receipt.
3 PACKAGE="py3k-cffi"
4 VERSION="1.15.1"
5 CATEGORY="development"
6 SHORT_DESC="C Foreign Function Interface for Python."
7 MAINTAINER="maintainer@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="py3k"
17 BUILD_DEPENDS="py3k-dev py3k-setuptools_scm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 python3 setup.py \
23 install \
24 --prefix=/usr \
25 --root=$DESTDIR
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 cook_copy_folders lib
32 }