mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-01-24 09:52:13 +08:00
28 lines
598 B
Bash
28 lines
598 B
Bash
|
|
pkgname=ibus-qt
|
|
pkgver=1.3.2
|
|
pkgrel=1
|
|
pkgdesc='IBus qt library and IBus qt input method plugin'
|
|
arch=('x86_64')
|
|
license=('LGPL')
|
|
url='http://ibus.googlecode.com'
|
|
depends=('qt' 'ibus' 'icu')
|
|
makedepends=('cmake' 'automoc4' 'doxygen')
|
|
source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}-Source.tar.gz")
|
|
md5sums=('e53cb59f993d0c93ba968330dbc62c22')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-Source"
|
|
mkdir build
|
|
cd build
|
|
|
|
cmake .. -DCMAKE_INSTALL_PREFIX=/extra/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}-Source/build"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|