mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 16:44:37 +08:00
27 lines
713 B
Bash
27 lines
713 B
Bash
#maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
#contributions from Arch: https://www.archlinux.org/packages/extra/x86_64/libchewing/
|
|
|
|
pkgname=libchewing
|
|
pkgver=0.3.4
|
|
pkgrel=1
|
|
pkgdesc="Improved Smart Chewing Library - Intelligent Chinese Phonetic Input Method"
|
|
arch=('x86_64')
|
|
url="http://chewing.csie.net/"
|
|
license=("GPL")
|
|
depends=('glibc')
|
|
makedepends=('libtool')
|
|
options=('!libtool')
|
|
source=("http://chewing.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2")
|
|
sha1sums=('631a613df00409b51adebb8b2dc33c5e6a006834')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|