blob: 0a8ad54629b8e7abdbfddf3a508cf885c749b16a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# $Id: PKGBUILD 203458 2014-01-11 02:11:21Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
pkgbase=ibus
pkgname=(ibus libibus)
pkgver=1.5.4
pkgrel=3
pkgdesc="Next Generation Input Bus for Linux"
arch=('i686' 'x86_64')
url="http://ibus.googlecode.com"
license=('LGPL')
depends=('dconf' 'gtk2' 'gtk3' 'hicolor-icon-theme' 'libnotify' 'pygtk' 'python2-dbus')
makedepends=('gobject-introspection' 'vala' 'gconf' 'iso-codes' 'intltool' 'python2-gobject')
options=('!emptydirs')
source=(http://ibus.googlecode.com/files/${pkgbase}-${pkgver}.tar.gz)
sha1sums=('2ce4b4d728a4685fd77360d0097b0e568f920c7b')
build() {
cd ${pkgbase}-${pkgver}
export PYTHON=python2
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/ibus \
--sysconfdir=/etc \
--disable-gconf \
--enable-dconf \
--disable-memconf \
--enable-ui \
--enable-python-library
make
}
package_ibus() {
depends+=("libibus=$pkgver" 'python2-gobject')
install=ibus.install
cd ${pkgbase}-${pkgver}
make DESTDIR="${pkgdir}" install
make -C src DESTDIR="${pkgdir}" uninstall
make -C bindings DESTDIR="${pkgdir}" uninstall
make DESTDIR="${pkgdir}" uninstall-pkgconfigDATA
}
package_libibus() {
pkgdesc="IBus support library"
depends=('glib2')
cd ${pkgbase}-${pkgver}
make -C src DESTDIR="${pkgdir}" install
make -C bindings DESTDIR="${pkgdir}" install
make DESTDIR="${pkgdir}" install-pkgconfigDATA
}
|