wok view python-gazpacho/receipt @ rev 15981

syslinux-tools: add meminfo.exe
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 01 19:10:36 2014 +0000 (2014-03-01)
parents 22165a2fb1b5
children d3eb5f4b53ea
line source
1 # SliTaz package receipt.
3 PACKAGE="python-gazpacho"
4 SOURCE="gazpacho"
5 VERSION="0.7.2"
6 CATEGORY="development"
7 SHORT_DESC="A GUI builder for the GTK+ toolkit"
8 MAINTAINER="claudinei@slitaz.org"
9 LICENSE="LGPL2.1"
10 SUGGESTED="twisted"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://gazpacho.sicem.biz"
13 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$SOURCE/0.7/$TARBALL"
15 DEPENDS="python pygtk python-kiwi"
16 BUILD_DEPENDS="python python-dev pygtk python-kiwi"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 python setup.py install --root=$DESTDIR || return 1
23 mkdir -p $DESTDIR/usr/share/locale/pt
24 cp -a locale/fr $DESTDIR/usr/share/locale
25 cp -a locale/pt_BR/LC_MESSAGES $DESTDIR/usr/share/locale/pt
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib $fs/usr
34 cp -a $install/usr/share $fs/usr
35 }