mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-25 02:22:13 +08:00
36 lines
877 B
Bash
Executable File
36 lines
877 B
Bash
Executable File
|
|
pkgname=ibus
|
|
pkgver=1.5.2
|
|
pkgrel=1
|
|
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')
|
|
depends=('hicolor-icon-theme' 'gtk2' 'gtk3' 'pyxdg' 'python2-gobject')
|
|
makedepends=('gobject-introspection' 'vala' 'iso-codes' 'intltool')
|
|
options=('!libtool')
|
|
install=ibus.install
|
|
source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('a7e1695731b4c954fa8897d091e6dda64e08b28c')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
export PYTHON=python2
|
|
./configure \
|
|
--prefix=/extra/usr \
|
|
--libexecdir=/extra/usr/lib/ibus \
|
|
--sysconfdir=/etc \
|
|
--disable-gconf \
|
|
--disable-dconf \
|
|
--disable-memconf \
|
|
--enable-ui \
|
|
--enable-python-library
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|