mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 15:15:18 +08:00
29 lines
728 B
Bash
29 lines
728 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.5
|
|
pkgrel=1
|
|
pkgdesc="Improved Smart Chewing Library - Intelligent Chinese Phonetic Input Method"
|
|
arch=('x86_64')
|
|
url="http://chewing.im/"
|
|
license=("GPL")
|
|
depends=('glibc')
|
|
makedepends=('libtool')
|
|
options=('!libtool')
|
|
source=("https://github.com/chewing/libchewing/archive/v${pkgver}.tar.gz")
|
|
sha1sums=('b578577bef40c1986a87cf0fd1a2103dc5736518')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./autogen.sh
|
|
./configure --prefix=/usr --enable-static=no
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|