gtk/ibus-libzhuyin/PKGBUILD
2016-04-16 23:10:25 +01:00

26 lines
714 B
Bash

pkgname=ibus-libzhuyin
pkgver=1.7.6
pkgrel=2
pkgdesc="New Zhuyin engine based on libzhuyin for IBus."
arch=('x86_64')
license=('GPL')
url="https://github.com/libzhuyin/ibus-libzhuyin"
depends=('ibus' 'gettext' 'intltool' 'sqlite3' 'opencc' 'libzhuyin' 'python3')
source=("http://downloads.sourceforge.net/libzhuyin/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('3aa3ba060fdc454f8c5d395546f6e88360c2353f')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--libexecdir=/usr/lib/ibus \
--disable-static \
--disable-boost \
--with-python=python3
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}