wok view python-incremental/receipt @ rev 22099
Add python-incremental
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 01 14:48:33 2019 +0100 (2019-11-01) |
parents | |
children | 2042c3181dc5 |
line source
1 # SliTaz package receipt.
3 PACKAGE="python-incremental"
4 SOURCE="incremental"
5 VERSION="17.5.0"
6 CATEGORY="development"
7 SHORT_DESC="A library for versioning your Python projects"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="BSD"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/twisted/incremental"
12 WGET_URL="$WEB_SITE/archive/$TARBALL"
14 DEPENDS="python"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 python setup.py build &&
20 python setup.py install --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs
27 cp -a $install/usr $fs
28 }