2013-06-08 06:02:24 +08:00
|
|
|
|
|
|
|
pkgname=ibus
|
2015-02-26 15:51:08 +08:00
|
|
|
pkgver=1.5.10
|
2015-03-15 18:00:35 +08:00
|
|
|
pkgrel=2
|
2013-06-08 06:02:24 +08:00
|
|
|
pkgdesc="Next Generation Input Bus for Linux, IBus qt library and IBus qt input method plugin included"
|
|
|
|
arch=('x86_64')
|
|
|
|
url="http://ibus.googlecode.com"
|
|
|
|
license=('LGPL')
|
2015-03-15 18:00:35 +08:00
|
|
|
depends=('hicolor-icon-theme' 'libnotify' 'gtk2' 'gtk3' 'pyxdg' 'python2-gobject' 'dconf')
|
2013-06-08 06:02:24 +08:00
|
|
|
makedepends=('gobject-introspection' 'vala' 'iso-codes' 'intltool')
|
|
|
|
install=ibus.install
|
2015-02-26 15:51:08 +08:00
|
|
|
source=(https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz)
|
|
|
|
sha1sums=('26a67c3e0ab5efbf14b1872baca4cd972cb08ae2')
|
2013-06-08 06:02:24 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
export PYTHON=python2
|
|
|
|
./configure \
|
2013-11-11 02:40:09 +08:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/ibus \
|
2013-06-08 06:02:24 +08:00
|
|
|
--sysconfdir=/etc \
|
|
|
|
--disable-gconf \
|
|
|
|
--disable-memconf \
|
|
|
|
--enable-ui \
|
|
|
|
--enable-python-library
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|