gtk/ibus-libzhuyin/PKGBUILD

26 lines
714 B
Bash
Raw Normal View History

2015-09-24 20:43:20 +08:00
pkgname=ibus-libzhuyin
2016-01-20 15:25:16 +08:00
pkgver=1.7.6
2016-04-17 06:10:25 +08:00
pkgrel=2
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"
depends=('ibus' 'gettext' 'intltool' 'sqlite3' 'opencc' 'libzhuyin' 'python3')
source=("http://downloads.sourceforge.net/libzhuyin/${pkgname}/${pkgname}-${pkgver}.tar.gz")
2016-01-20 15:25:16 +08:00
sha1sums=('3aa3ba060fdc454f8c5d395546f6e88360c2353f')
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
}