wok annotate pyroom/receipt @ rev 22291

updated xorg-xkbutils (1.0.3 -> 1.0.4)
author Hans-G?nter Theisgen
date Wed Nov 13 16:11:02 2019 +0100 (2019-11-13)
parents 16df76e1fc6a
children 2f230197370e
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/"
pascal@20669 11 WGET_URL="https://launchpad.net/pyroom/${VERSION%.*}/$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 python setup.py build &&
pascal@15376 20 python setup.py install --root=$DESTDIR
paul@3943 21 }
paul@3943 22
paul@3943 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@3943 24 genpkg_rules()
paul@3943 25 {
paul@3944 26 mkdir -p $fs
pascal@15376 27 cp -a $install/usr $fs
paul@3943 28 }
al@18077 29