wok-stable view gxmessage/receipt @ rev 6616

Fixed mercurial. Need pyconfig.h for mercurial to work. So i added this to python package since pyconfig.h maybe need for more python programs. I also removed all .pyc and .pyo files from python. Removed about 4mb from python by doing that.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 09 20:49:19 2010 +0000 (2010-10-09)
parents c91fdd0583b9
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gxmessage"
4 VERSION="2.6.2"
5 CATEGORY="utilities"
6 SHORT_DESC="GTK2-based clone of xmessage"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+ expat xorg-libXdamage"
9 BUILD_DEPENDS="gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage"
12 WGET_URL="http://homepages.ihug.co.nz/~trmusson/stuff/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS && \
19 make
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
27 cp -a $src/gxmessage $fs/usr/bin
28 cp -a $src/gxmessage.png $fs/usr/share/pixmaps
29 }