wok-stable view geany/receipt @ rev 188

UP : geany (0.13) more plugins, receipts are colored..., and much more
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 06 18:25:01 2008 +0100 (2008-02-06)
parents 4959e5789caa
children 234b3f225100
line source
1 # SliTaz package receipt.
3 PACKAGE="geany"
4 VERSION="0.13"
5 CATEGORY="development"
6 SHORT_DESC="Small and fast IDE using GTK+ toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libxml2"
9 BUILD_DEPENDS="gtk+-dev libxml2-dev perl-xml-parser"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://geany.uvena.de/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 JWM_MENU='Development:<Program icon="geany.png" label="Geany IDE">geany</Program>'
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 --disable-vte \
23 $CONFIGURE_ARGS
24 make
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share $fs/usr/lib/geany
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/geany/*.so $fs/usr/lib/geany
34 cp -a $_pkg/usr/share/geany $fs/usr/share
35 cp -a stuff/filetype_extensions.conf $fs/usr/share/geany
36 }