wok view geany/receipt @ rev 3575

Add python-pyyaml
author Liu Peng <rocky@slitaz.org>
date Fri Jun 26 01:17:10 2009 +0000 (2009-06-26)
parents 8b79c3ee7ac2
children 5e6cb07cd218
line source
1 # SliTaz package receipt.
3 PACKAGE="geany"
4 VERSION="0.17"
5 CATEGORY="development"
6 SHORT_DESC="Small and fast IDE using GTK+ toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libxml2 xorg-libXdamage"
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 }