wok view roundup/receipt @ rev 25283

updated roundup (1.6.1 -> 2.2.0)
author Hans-G?nter Theisgen
date Mon Jul 18 15:58:43 2022 +0100 (22 months ago)
parents 2f230197370e
children f26a79808625
line source
1 # SliTaz package receipt.
3 PACKAGE="roundup"
4 VERSION="2.2.0"
5 CATEGORY="development"
6 SHORT_DESC="Simple-to-use issue-tracking system with command-line, web and e-mail interfaces."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.roundup-tracker.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://files.pythonhosted.org/packages/source/${PACKAGE:0:1}/$PACKAGE/$TARBALL"
14 DEPENDS="python"
16 # What is the latest version available today?
17 current_version()
18 {
19 wget -O - https://pypi.org/project/roundup/ 2>/dev/null | \
20 sed '/roundup [0-9]/!d;s|.*roundup ||'
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 python setup.py build &&
27 python setup.py install --root=$DESTDIR
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share
35 cp -a $install/usr/share/roundup $fs/usr/share
36 cook_copy_folders bin
37 cook_copy_folders lib
38 }