wok annotate leafpad/receipt @ rev 517

Busybox: Add top and cpio (with cpio -o -H new support)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 08 14:42:37 2008 +0000 (2008-04-08)
parents eb4e6a1af180
children 0c1406e714da
rev   line source
pankso@42 1 # SliTaz package receipt.
pankso@42 2
pankso@42 3 PACKAGE="leafpad"
pankso@162 4 VERSION="0.8.13"
pankso@201 5 CATEGORY="utilities"
pankso@42 6 SHORT_DESC="GTK simple text editor."
pankso@42 7 MAINTAINER="pankso@slitaz.org"
pankso@42 8 DEPENDS="gtk+"
pankso@462 9 BUILD_DEPENDS="gtk+-dev"
pankso@42 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@42 11 WEB_SITE="http://tarot.freeshell.org/leafpad/"
pankso@42 12 WGET_URL="http://savannah.nongnu.org/download/$PACKAGE/$TARBALL"
pankso@42 13
pankso@42 14 # Rules to configure and make the package.
pankso@42 15 compile_rules()
pankso@42 16 {
pankso@42 17 cd $src
pankso@57 18 ./configure \
pankso@57 19 --prefix=/usr \
pankso@57 20 --infodir=/usr/share/info \
pankso@57 21 --mandir=/usr/share/man \
pankso@57 22 --disable-print \
pankso@57 23 $CONFIGURE_ARGS
pankso@42 24 make
pankso@42 25 make DESTDIR=$PWD/_pkg install
pankso@462 26 # no xpm (5 ko)
pankso@462 27 rm _pkg/usr/share/pixmaps/*.xpm
pankso@42 28 }
pankso@42 29
pankso@42 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@42 31 genpkg_rules()
pankso@42 32 {
pankso@462 33 mkdir -p $fs/usr
pankso@42 34 cp -a $_pkg/usr/bin $fs/usr
pankso@42 35 }