mirror of
https://gitdl.cn/https://github.com/chakralinux/gtk.git
synced 2025-02-09 23:07:15 +08:00
26 lines
714 B
Bash
26 lines
714 B
Bash
pkgname=ibus-libzhuyin
|
|
pkgver=1.7.5
|
|
pkgrel=1
|
|
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=('7e7bf13e6ab98d1e32a16a7cb2047a3561e8c838')
|
|
|
|
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
|
|
}
|