wok view xpad/receipt @ rev 769

Add tcc (Tiny C Compiler)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun May 11 11:36:09 2008 +0000 (2008-05-11)
parents eb4e6a1af180
children f08ead2d5191
line source
1 # SliTaz package receipt.
3 PACKAGE="xpad"
4 VERSION="2.14"
5 CATEGORY="utilities"
6 SHORT_DESC="Desktop note pad using GTK+ toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://xpad.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 HANDBOOK_URL='http://www.slitaz.org/doc/handbook/utilities.html#xpad'
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }