wok view python-bcrypt/receipt @ rev 22539

updated bird (2.0.3 -> 2.0.7)
author Hans-G?nter Theisgen
date Fri Jan 03 16:08:36 2020 +0100 (2020-01-03)
parents 4e8082a993f8
children ad7944242242
line source
1 # SliTaz package receipt.
3 PACKAGE="python-bcrypt"
4 SOURCE="bcrypt"
5 VERSION="3.1.7"
6 CATEGORY="development"
7 SHORT_DESC="Modern password hashing for your software and your servers"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="Apache"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/pyca/bcrypt/"
12 WGET_URL="https://github.com/pyca/bcrypt/archive/$VERSION.tar.gz"
14 DEPENDS="python-cffi"
15 BUILD_DEPENDS="python-setuptools python-dev libffi-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py build &&
21 python setup.py install --root=$DESTDIR
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs
28 cp -a $install/usr $fs
29 }