# Contributor: HIME team _pkgname=hime pkgname=hime-git pkgver=1101.0bb91a0 pkgrel=1 pkgdesc="A GTK2+/GTK3+ based universal input method platform" arch=('x86_64') url="http://hime-ime.github.io/" license=('LGPL2' 'FDL' 'GPL2') depends=('gtk2' 'libxtst') makedepends=('git' 'gettext') # uncomment and edit next line to enable those plugins # makedepends+=('gtk3' 'qt5-base' 'anthy' 'libchewing') optdepends=('gtk3: enable gtk3 im module' 'qt5-base: enable qt5 im module' 'anthy: enable Anthy input method' 'libchewing: enable Chewing input method') conflicts=('hime') provides=('hime') source=("${_pkgname}::git+https://github.com/hime-ime/hime.git") sha512sums=('SKIP') pkgver() { cd "${srcdir}/${_pkgname}" echo "$(git rev-list --count master).$(git rev-parse --short master)" } build() { cd "${srcdir}/${_pkgname}" autoreconf -i ./configure --prefix=/usr --with-qt5-im-module-path=/usr/lib/qt/plugins/platforminputcontexts/ make } package() { cd "${srcdir}/${_pkgname}" make DESTDIR="${pkgdir}" install install -dm755 "${pkgdir}/usr/share/licenses/${_pkgname}/" # install licence files install -Dm644 fdl-1.2.txt gpl-2.0.txt lgpl-2.1.txt "${pkgdir}/usr/share/licenses/${_pkgname}/" }