wok view cmake/receipt @ rev 43

Add : gcolor2, geany, gftp, gimp, gitmail, gqview, grsync
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 14:18:59 2007 +0100 (2007-12-18)
parents
children 055081613869
line source
1 # SliTaz package receipt.
3 PACKAGE="cmake"
4 VERSION="2.4.7"
5 CATEGORY="devel"
6 SHORT_DESC="Cross-platform Make."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.cmake.org/"
10 WGET_URL="http://www.cmake.org/files/v2.4/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./bootstrap --prefix=/usr --docdir=/share/doc \
17 --mandir=/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $_pkg/* $fs
26 rm -rf $fs/usr/share/man
27 strip -s $fs/usr/bin/*
28 }