core/libchewing/PKGBUILD
2013-06-20 11:20:09 +00:00

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
}