diff options
Diffstat (limited to 'extra/gcin/PKGBUILD')
-rw-r--r-- | extra/gcin/PKGBUILD | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/extra/gcin/PKGBUILD b/extra/gcin/PKGBUILD index db9e2ba91..6a827b46e 100644 --- a/extra/gcin/PKGBUILD +++ b/extra/gcin/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 178956 2013-03-01 10:20:17Z andrea $ +# $Id: PKGBUILD 193564 2013-08-24 05:33:50Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Andreas Radke <andyrtr@archlinux.org> # Contributor: damir <damir@archlinux.org> pkgname=gcin -pkgver=2.8.0 -pkgrel=2 +pkgver=2.8.1 +pkgrel=1 pkgdesc='Input method server supporting various input methods' url='http://hyperrate.com/dir.php?eid=67' license=('LGPL') @@ -17,21 +17,22 @@ optdepends=('qt4: support for qt4 input method' 'anthy: support for anthy input method' 'libchewing: support for chewing input method') source=("http://www.csie.nctu.edu.tw/~cp76/gcin/download/${pkgname}-${pkgver}.tar.xz") -sha1sums=('69fe604939bc013f043ff0b4baa63b7951b26c95') +sha1sums=('fc7323f1e0558675a94e91de2166c484c72d464d') install=install -build() { +prepare() { cd "${srcdir}/${pkgname}-${pkgver}" - - source /etc/profile.d/qt4.sh sed 's/lib64/lib/g' -i configure sed '/include suffixes-rule/a \ CFLAGS+='"${CFLAGS}"' \ LDFLAGS+='"${LDFLAGS}"' \ OPTFLAGS=' \ -i Makefile +} +build() { + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --use_i18n=Y make } |