wok view geany/receipt @ rev 1566

obconf, openbox: hack compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 13 15:33:45 2008 +0000 (2008-10-13)
parents 88f5faeafae6
children e322190dbc40
line source
1 # SliTaz package receipt.
3 PACKAGE="geany"
4 VERSION="0.14"
5 CATEGORY="development"
6 SHORT_DESC="Small and fast IDE using GTK+ toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libxml2"
9 SUGGESTED="geany-plugins vte"
10 BUILD_DEPENDS="gtk+-dev libxml2-dev perl-xml-parser"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://geany.uvena.de/"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 # Rules to configure and make the package.
16 # Without vte : --disable-vte
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
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
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/geany $fs/usr/share
34 cp -a stuff/filetype_extensions.conf $fs/usr/share/geany
35 rm $fs/usr/share/geany/GPL-2
36 }