mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
673 B
Bash
26 lines
673 B
Bash
|
# $Id: PKGBUILD 28130 2009-02-28 00:15:08Z eric $
|
||
|
# Maintainer: damir <damir@archlinux.org>
|
||
|
# Contributor: whisky <archlinux.cle(at)gmail.com>
|
||
|
|
||
|
pkgname=scim-chewing
|
||
|
pkgver=0.3.3
|
||
|
pkgrel=1
|
||
|
pkgdesc="SCIM Smart Chewing input method engine"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://chewing.csie.net/"
|
||
|
license=("GPL")
|
||
|
depends=('scim>=1.4.8' 'libchewing>=0.3.2')
|
||
|
makedepends=('intltool')
|
||
|
options=('!libtool')
|
||
|
source=(http://chewing.csie.net/download/scim/$pkgname-$pkgver.tar.bz2)
|
||
|
md5sums=('3f17ccae3f20f42a33e464aeb06eb1cb')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --disable-static || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|
||
|
|
||
|
|