gtk/ibus-libzhuyin/PKGBUILD

26 lines
715 B
Bash
Raw Permalink Normal View History

2015-09-24 20:43:20 +08:00
pkgname=ibus-libzhuyin
pkgver=1.9.0
2017-11-28 21:04:24 +08:00
pkgrel=1
2015-09-24 20:43:20 +08:00
pkgdesc="New Zhuyin engine based on libzhuyin for IBus."
arch=('x86_64')
license=('GPL')
url="https://github.com/libzhuyin/ibus-libzhuyin"
2017-11-28 21:04:24 +08:00
depends=('ibus' 'gettext' 'intltool' 'sqlite3' 'opencc' 'libpinyin' 'python3')
source=("https://downloads.sourceforge.net/libzhuyin/${pkgname}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('9713399e560146cc8aa7453cb3182377e208fbfa')
2015-09-24 20:43:20 +08:00
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
}