wok annotate gutenpy/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents b8b131bc573c
children 16df76e1fc6a
rev   line source
paul@4703 1 # SliTaz package receipt.
paul@4703 2
paul@4703 3 PACKAGE="gutenpy"
paul@4703 4 VERSION="0.3.0"
paul@4703 5 CATEGORY="office"
paul@4703 6 SHORT_DESC="A text reader and catalog browser for project Gutenburg."
paul@4703 7 MAINTAINER="paul@slitaz.org"
pascal@15589 8 LICENSE="GPL2"
paul@4703 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@4703 10 WEB_SITE="http://gutenpy.sourceforge.net/"
paul@4703 11 WGET_URL="http://prdownloads.sourceforge.net/gutenpy/$TARBALL"
paul@4703 12
pascal@15589 13 DEPENDS="python pygtk"
pascal@15589 14 BUILD_DEPENDS="python python-dev"
pascal@15589 15
paul@4703 16 # Rules to configure and make the package.
paul@4703 17 compile_rules()
paul@4703 18 {
paul@4703 19 cd $src
paul@4703 20
paul@4703 21 # Fix missing .desktop file
paul@4703 22 sed -i '/share\/applications/d' setup.py
paul@4703 23 sed -i '/gutenpy.desktop/d' setup.py
pascal@15589 24 python setup.py install --root=$DESTDIR
paul@4703 25 }
paul@4703 26
paul@4703 27 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4703 28 genpkg_rules()
paul@4703 29 {
pascal@15589 30 cp -a $install/usr $fs
paul@4703 31 # Add gutenpy.desktop file
paul@4703 32 cp -a stuff/* $fs
paul@4703 33 }
paul@4703 34