wok-next view ibus/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="ibus"
4 VERSION="1.4.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Intelligent Input Bus for Linux / Unix OS"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/ibus/ibus/wiki"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://ibus.googlecode.com/files/$TARBALL" # FIXME
14 BUILD_DEPENDS="gtk2-dev gconf-dev python-dev python-dbus-dev dbus-glib-dev \
15 intltool gettext-dev perl iso-codes-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure \
20 --disable-gtk3 \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make DESTDIR=$install install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 ibus)
30 copy @std
31 DEPENDS="gconf glib gtk2 pango python libx11"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="ibus glib-dev"
36 ;;
37 esac
38 }