wok-4.x rev 9622
Add roundup. We should have roundup in wok for next stable.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Apr 22 17:33:42 2011 +0000 (2011-04-22) |
parents | 18a6a2293fee |
children | fbac7633537e |
files | roundup/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/roundup/receipt Fri Apr 22 17:33:42 2011 +0000 1.3 @@ -0,0 +1,29 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="roundup" 1.7 +VERSION="1.4.16" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Simple-to-use issue-tracking system with command-line, web and e-mail interfaces." 1.10 +MAINTAINER="slaxemulator@gmail.com" 1.11 +DEPENDS="python" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.roundup-tracker.org" 1.14 +WGET_URL="http://pypi.python.org/packages/source/r/$PACKAGE/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + python setup.py build 1.21 + python setup.py install --root=$DESTDIR 1.22 +} 1.23 + 1.24 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.25 +genpkg_rules() 1.26 +{ 1.27 + mkdir -p $fs/usr/share 1.28 + cp -a $_pkg/usr/bin $fs/usr 1.29 + cp -a $_pkg/usr/lib $fs/usr 1.30 + cp -a $_pkg/usr/share/roundup $fs/usr/share 1.31 +} 1.32 +