wok-next view geany/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
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 libcairo 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 }