PKGBUILDs/extra/scim-tables/PKGBUILD

24 lines
721 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 28133 2009-02-28 00:19:38Z eric $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Gan Lu <rhythm.gan@gmail.com>
pkgname=scim-tables
pkgver=0.5.9
pkgrel=1
pkgdesc="SCIM multi language input method engine (including CJK)"
arch=('i686' 'x86_64')
url="http://www.scim-im.org/"
license=('GPL')
depends=('scim>=1.4.8')
options=('!libtool')
source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz)
md5sums=('ef7d54966d0b07b1db49358213558065')
build() {
cd $srcdir/$pkgname-$pkgver
# sed -i "s#<string>#<cstring>#" src/scim_generic_table.h || return 1
./configure --prefix=/usr --disable-static || return 1
make || return 1
make DESTDIR=$pkgdir install || return 1
}