wok annotate pysize/receipt @ rev 16637
ruby-dev: add gem
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon May 12 10:25:37 2014 +0000 (2014-05-12) |
parents | 490539922a0d |
children | 16df76e1fc6a |
rev | line source |
---|---|
pascal@14377 | 1 # SliTaz package receipt. |
pascal@14377 | 2 |
pascal@14377 | 3 PACKAGE="pysize" |
pascal@14377 | 4 VERSION="0.2" |
pascal@14377 | 5 CATEGORY="utilities" |
pascal@14377 | 6 SHORT_DESC="Console and graphical tool for exploring the size of directories." |
pascal@14377 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pascal@14377 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@14377 | 10 WEB_SITE="http://guichaz.free.fr/pysize/" |
pascal@14377 | 11 WGET_URL="http://guichaz.free.fr/pysize/files/$TARBALL" |
pascal@14377 | 12 |
pascal@15002 | 13 DEPENDS="python ncurses pygtk librsvg" |
pascal@15002 | 14 BUILD_DEPENDS="python-dev ncurses-dev pygtk-dev setuptools" |
pascal@15002 | 15 |
pascal@14377 | 16 # Rules to configure and make the package. |
pascal@14377 | 17 compile_rules() |
pascal@14377 | 18 { |
pascal@14377 | 19 cd $src |
pascal@14377 | 20 python setup.py build |
pascal@14377 | 21 python setup.py install --root=$DESTDIR |
pascal@14377 | 22 } |
pascal@14377 | 23 |
pascal@14377 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@14377 | 25 genpkg_rules() |
pascal@14377 | 26 { |
pascal@14377 | 27 cp -a $install/usr $fs |
pascal@14377 | 28 } |
pascal@14377 | 29 |