wok view leafpad/receipt @ rev 17424

icedtea6-jdk: use automake --add-missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 05 00:06:05 2014 +0100 (2014-12-05)
parents 128aae84d74c
children 5d53e8ccbc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="leafpad"
4 VERSION="0.8.18.1"
5 CATEGORY="utilities"
6 SHORT_DESC="GTK simple text editor."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://tarot.freeshell.org/leafpad/"
11 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
13 GENERIC_PIXMAPS="no"
15 DEPENDS="gtk+ xorg-libXdamage"
16 BUILD_DEPENDS="gtk+-dev xorg-libXrender-dev xorg-xproto"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 chmod +x install-sh
22 ./configure \
23 --disable-print \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share/icons/hicolor/48x48/apps
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share/pixmaps/leafpad.png \
34 $fs/usr/share/icons/hicolor/48x48/apps
35 }