mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
23 lines
620 B
Bash
23 lines
620 B
Bash
pkgname=libzhuyin
|
|
pkgver=1.0.91
|
|
pkgrel=2
|
|
pkgdesc="The libzhuyin project aims to provide the algorithms core for intelligent sentence-based Chinese zhuyin input methods."
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="https://github.com/libzhuyin/libzhuyin"
|
|
depends=('db' 'glib2')
|
|
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
|
sha1sums=('0d248193e0daf4f67eaa9bfb1903094efb16aea3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|