wok annotate python-urwid/receipt @ rev 14157

Up: nspr-dev (4.9.4)
author Dominique Corbex <domcox@slitaz.org>
date Tue Mar 05 22:39:47 2013 +0100 (2013-03-05)
parents 28118660ac22
children 76b72f1ad63c
rev   line source
paul@5239 1 # SliTaz package receipt.
paul@5239 2
paul@5239 3 PACKAGE="python-urwid"
paul@13663 4 VERSION="1.1.1"
paul@5239 5 CATEGORY="development"
paul@5239 6 SHORT_DESC="Console user interface library for Python."
paul@5239 7 MAINTAINER="paul@slitaz.org"
paul@5239 8 DEPENDS="python"
paul@5239 9 BUILD_DEPENDS="python python-dev"
paul@5239 10 SOURCE="urwid"
paul@5239 11 TARBALL="$SOURCE-$VERSION.tar.gz"
paul@5239 12 WEB_SITE="http://excess.org/urwid/"
paul@5239 13 WGET_URL="http://excess.org/urwid/$TARBALL"
paul@5239 14
paul@5239 15 # Rules to configure and make the package.
paul@5239 16 compile_rules()
paul@5239 17 {
paul@5239 18 cd $src
paul@13663 19 python setup.py install --root=$DESTDIR
paul@5239 20 }
paul@5239 21
paul@5239 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@5239 23 genpkg_rules()
paul@5239 24 {
paul@13663 25 cp -a $install/usr $fs
paul@5239 26 }
paul@5239 27