wok annotate pyroom/receipt @ rev 4095

Fix: PolicyKit0 FSH (again)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Sep 17 16:21:07 2009 +0200 (2009-09-17)
parents fda9c1510e64
children dd8d1d85b596
rev   line source
paul@3943 1 # SliTaz package receipt.
paul@3943 2
paul@3943 3 PACKAGE="pyroom"
paul@3943 4 VERSION="0.4.1"
paul@3943 5 CATEGORY="office"
paul@3943 6 SHORT_DESC="Full screen editor."
paul@3943 7 MAINTAINER="paul@slitaz.org"
paul@3943 8 DEPENDS="python pygtk python-xdg"
paul@3943 9 BUILD_DEPENDS="python python-dev gettext"
paul@3943 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3943 11 WEB_SITE="http://pyroom.org/"
paul@3943 12 WGET_URL="http://launchpad.net/pyroom/0.4/$VERSION/+download/$TARBALL"
paul@3943 13
paul@3943 14 # Rules to configure and make the package.
paul@3943 15 compile_rules()
paul@3943 16 {
paul@3943 17 cd $src
paul@3943 18 python setup.py build &&
paul@3943 19 python setup.py install --root=$PWD/_pkg
paul@3943 20 }
paul@3943 21
paul@3943 22 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3943 23 genpkg_rules()
paul@3943 24 {
paul@3944 25 mkdir -p $fs
paul@3943 26 cp -a $_pkg/usr $fs
paul@3943 27 }
paul@3943 28