mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:34:48 +08:00
26 lines
683 B
Bash
26 lines
683 B
Bash
#contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libchewing/
|
|
|
|
pkgname=libchewing
|
|
pkgver=0.5.1
|
|
pkgrel=1
|
|
pkgdesc="Improved Smart Chewing Library - Intelligent Chinese Phonetic Input Method"
|
|
arch=('x86_64')
|
|
url="http://chewing.im/"
|
|
license=("GPL")
|
|
depends=('sqlite3')
|
|
makedepends=('valgrind' 'libtool')
|
|
options=('!libtool')
|
|
source=("https://github.com/chewing/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('b5c8b920b414e74de69c7e0200dac3d3fa9e9e14')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|