wok view python-flask/receipt @ rev 21490

trickle: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 01 18:05:32 2019 +0200 (2019-05-01)
parents bcdfc23ee041
children 814362194a8d
line source
1 # SliTaz package receipt.
3 PACKAGE="python-flask"
4 SOURCE="Flask"
5 VERSION="1.0.2"
6 CATEGORY="development"
7 SHORT_DESC="A simple framework for building complex web applications"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="BSD"
10 WEB_SITE="http://flask.pocoo.org/"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="https://files.pythonhosted.org/packages/4b/12/c1fbf4971fda0e4de05565694c9f0c92646223cff53f15b6eb248a310a62/$TARBALL"
14 DEPENDS="python-click python-itsdangerous"
15 BUILD_DEPENDS="setuptools"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python setup.py install --prefix=/usr --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/usr $fs/
27 }