mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-03 11:07:14 +08:00
939881d12f
gtk3 3.10.7 group, emacs, oxygen-gtk3
34 lines
855 B
Bash
Executable File
34 lines
855 B
Bash
Executable File
|
|
pkgname=ibus
|
|
pkgver=1.5.5
|
|
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' 'libnotify' 'gtk2' 'gtk3' 'pyxdg' 'python2-gobject')
|
|
makedepends=('gobject-introspection' 'vala' 'iso-codes' 'intltool')
|
|
install=ibus.install
|
|
source=(http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('5671fe504e65aaf396c1d779032d7526c161b64b')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
export PYTHON=python2
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libexecdir=/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
|
|
}
|