wok annotate pyroom/receipt @ rev 17381

Add incron
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Nov 26 14:59:55 2014 +0100 (2014-11-26)
parents dd8d1d85b596
children d3eb5f4b53ea
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"
pascal@15376 8 LICENSE="GPL3"
paul@3943 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@3943 10 WEB_SITE="http://pyroom.org/"
paul@3943 11 WGET_URL="http://launchpad.net/pyroom/0.4/$VERSION/+download/$TARBALL"
paul@3943 12
pascal@15376 13 DEPENDS="python pygtk python-xdg libffi"
pascal@15376 14 BUILD_DEPENDS="python python-dev gettext"
pascal@15376 15
paul@3943 16 # Rules to configure and make the package.
paul@3943 17 compile_rules()
paul@3943 18 {
paul@3943 19 cd $src
paul@3943 20 python setup.py build &&
pascal@15376 21 python setup.py install --root=$DESTDIR
paul@3943 22 }
paul@3943 23
paul@3943 24 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3943 25 genpkg_rules()
paul@3943 26 {
paul@3944 27 mkdir -p $fs
pascal@15376 28 cp -a $install/usr $fs
paul@3943 29 }
paul@3943 30