wok view roundup/receipt @ rev 21844

updated roundup (1.4.16 -> 1.6.1)
author Hans-G?nter Theisgen
date Sun Sep 15 10:29:14 2019 +0100 (2019-09-15)
parents 7390f8de9846
children 05c8d8d9d934
line source
1 # SliTaz package receipt.
3 PACKAGE="roundup"
4 VERSION="1.6.1"
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="PSL"
9 WEB_SITE="http://www.roundup-tracker.org"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://files.pythonhosted.org/packages/source/r/$PACKAGE/$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/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/lib $fs/usr
30 cp -a $install/usr/share/roundup $fs/usr/share
31 }