wok-next view geany/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents f48456621a9d
children 82b613cfd1e0
line source
1 # SliTaz package receipt v2.
3 PACKAGE="geany"
4 VERSION="1.31"
5 CATEGORY="development"
6 SHORT_DESC="Small and fast IDE using GTK+ toolkit"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.geany.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://download.geany.org/$TARBALL"
14 BUILD_DEPENDS="gtk2-dev intltool python-lxml python-docutils"
15 SPLIT="$PACKAGE-doc $PACKAGE-dev"
17 compile_rules() {
18 sed -i '/_Keywords=/d' $src/geany.desktop.in
20 ./configure $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 geany)
29 copy @std @ico
30 DEPENDS="atk cairo gdk-pixbuf glib gtk2 pango python"
31 SUGGESTED="geany-plugins vte"
32 TAGS="text-editor"
33 ;;
34 geany-doc)
35 CAT="docs|official documentation"
36 copy doc/
37 ;;
38 geany-dev)
39 copy @dev
40 DEPENDS="geany glib-dev gtk2-dev"
41 ;;
42 esac
43 }