wok view leafpad/receipt @ rev 42

Add : isomaster, leafpad, mtpaint with modified icons
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:14:52 2007 +0100 (2007-12-18)
parents
children 76cf3d1b58ce
line source
1 # SliTaz package receipt.
3 PACKAGE="leafpad"
4 VERSION="0.8.12"
5 CATEGORY="extra"
6 SHORT_DESC="GTK simple text editor."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://tarot.freeshell.org/leafpad/"
11 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/pixmaps $fs/usr/share/locale
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/pixmaps/leafpad.png $fs/usr/share/pixmaps
29 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
30 strip -s $fs/usr/bin/*
31 }