# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ # Maintainer: damir # Contributor: Gan Lu # Contributor: Aashik S aashiks at gmail dot com pkgname=scim-tables pkgver=0.5.8 pkgrel=2 pkgdesc="SCIM multi language input method engine (including CJK) v0.5.8. This brings in support for some Malayalam input methods also" arch=(i686 x86_64) url="http://www.scim-im.org/" license=GPL depends=('scim>=1.4.7') #makedepends=('skim') source=(http://switch.dl.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz scim-tables-0.5.8-header.patch) build() { # The following line fixes an error in scim_generic_table.h in v0.5.8. The unpatched file causes a build fail patch $startdir/src/$pkgname-$pkgver/src/scim_generic_table.h scim-tables-0.5.8-header.patch || return 1 cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --disable-static make || return 1 make DESTDIR=$startdir/pkg install find $startdir/pkg -name '*.la' -exec rm {} \; } md5sums=('53ba0d00a71e467b5d009954cf56cb07')