wok view roundup/receipt @ rev 16641

rubyripper: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 12 15:02:35 2014 +0000 (2014-05-12)
parents 23c3aed67cd9
children 7390f8de9846
line source
1 # SliTaz package receipt.
3 PACKAGE="roundup"
4 VERSION="1.4.16"
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 DEPENDS="python"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.roundup-tracker.org"
12 WGET_URL="http://pypi.python.org/packages/source/r/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py build
19 python setup.py install --root=$DESTDIR
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib $fs/usr
28 cp -a $install/usr/share/roundup $fs/usr/share
29 }