wok annotate python-psutil/receipt @ rev 16187
gtk+: fix tarball name
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sun Mar 30 19:03:27 2014 +0200 (2014-03-30) |
parents | 1bf3b97cad7e |
children | 429355d87af5 |
rev | line source |
---|---|
paul@13599 | 1 # SliTaz package receipt. |
paul@13599 | 2 |
paul@13599 | 3 PACKAGE="python-psutil" |
paul@13599 | 4 VERSION="0.6.1" |
paul@13599 | 5 CATEGORY="development" |
paul@13599 | 6 SHORT_DESC="A process and system utilities module for Python." |
paul@13599 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15379 | 8 LICENSE="BSD" |
paul@13599 | 9 SOURCE="psutil" |
paul@13599 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
paul@13599 | 11 WEB_SITE="http://code.google.com/p/psutil/" |
paul@13599 | 12 WGET_URL="http://psutil.googlecode.com/files/$TARBALL" |
pascal@15379 | 13 |
paul@13599 | 14 DEPENDS="python" |
paul@13599 | 15 BUILD_DEPENDS="python-dev setuptools" |
paul@13599 | 16 |
paul@13599 | 17 # Rules to configure and make the package. |
paul@13599 | 18 compile_rules() |
paul@13599 | 19 { |
paul@13599 | 20 cd $src |
paul@13599 | 21 python setup.py install --root=$DESTDIR |
paul@13599 | 22 } |
paul@13599 | 23 |
paul@13599 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@13599 | 25 genpkg_rules() |
paul@13599 | 26 { |
paul@13599 | 27 cp -a $install/usr $fs |
paul@13599 | 28 } |
paul@13599 | 29 |