blob: 2a4fbb70a41bfc2538ba571bd8941d43917178fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $Id: PKGBUILD 149033 2012-02-05 15:05:03Z bisson $
# Contributor: damir <damir@archlinux.org>
# Contributor: whisky <archlinux.cle(at)gmail.com>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=libchewing
pkgver=0.3.3
pkgrel=2
pkgdesc='Intelligent Zhuyin input method library for traditional Chinese'
arch=('i686' 'x86_64')
url='http://chewing.csie.net/'
license=('GPL')
options=('!libtool')
source=("http://chewing.csie.net/download/libchewing/${pkgname}-${pkgver}.tar.bz2")
sha1sums=('24ade7bbb0288f71588bb45831d7fc9d5137a4cb')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --enable-static=no
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|