wok view mtpaint/receipt @ rev 199

All *-dev pkgs goes in category development
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 13 00:20:49 2008 +0100 (2008-02-13)
parents 4959e5789caa
children e4712a15e9ca
line source
1 # SliTaz package receipt.
3 PACKAGE="mtpaint"
4 VERSION="3.20"
5 CATEGORY="extra"
6 SHORT_DESC="Light paint programm and image manipulation."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://mtpaint.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 JWM_MENU='Graphics:<Program icon="mtpaint.xpm" label="mtPaint">mtpaint</Program><Program icon="camera-photo.png" label="Grab screenshot">mtpaint -s</Program>'
14 # Rules to configure and make the package.
15 #
16 # SliTaz use Tango icons, so we convert some for mtPaint.
17 #
18 compile_rules()
19 {
20 cp -a stuff/icons-tango $src/src
21 cd $src
22 ./configure --cpu=i486 --prefix=/usr intl icons-tango
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin \
30 $fs/usr/share/locale/fr/LC_MESSAGES \
31 $fs/usr/share/applications \
32 $fs/usr/share/pixmaps
33 cp -a $src/src/mtpaint $fs/usr/bin
34 cp -a $src/po/fr.mo $fs/usr/share/locale/fr/LC_MESSAGES/mtpaint.mo
35 cp -a $src/src/icons1/icon.xpm $fs/usr/share/pixmaps/mtpaint.xpm
36 strip -s $fs/usr/bin/*
37 # Desktop entry
38 cp -a stuff/$PACKAGE.desktop $fs/usr/share/applications
39 }