mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
721 B
Bash
24 lines
721 B
Bash
|
# $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
|
||
|
}
|