wok-next view ibus/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 5669e8b3be70
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 xorg-libX11"
32 ;;
33 *-dev)
34 copy @dev
35 DEPENDS="ibus glib-dev"
36 ;;
37 esac
38 }