wok view gutenpy/receipt @ rev 4750

gutenpy: edit receipt
author Paul Issott <paul@slitaz.org>
date Sat Jan 09 18:16:48 2010 +0000 (2010-01-09)
parents 335b02e4e8c8
children d1c17bd2c2bc
line source
1 # SliTaz package receipt.
3 PACKAGE="gutenpy"
4 VERSION="0.3.0"
5 CATEGORY="office"
6 SHORT_DESC="A text reader and catalog browser for project Gutenburg."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="python pygtk"
9 BUILD_DEPENDS="python python-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gutenpy.sourceforge.net/"
12 WGET_URL="http://prdownloads.sourceforge.net/gutenpy/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # Fix missing .desktop file
20 sed -i '/share\/applications/d' setup.py
21 sed -i '/gutenpy.desktop/d' setup.py
22 python setup.py install --root=$PWD/_pkg
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $_pkg/usr $fs
29 # Add gutenpy.desktop file
30 cp -a stuff/* $fs
31 }