PKGBUILDs/extra/scim/PKGBUILD
2009-10-09 21:23:22 -05:00

26 lines
784 B
Bash

# $Id: PKGBUILD 36320 2009-04-21 00:36:51Z eric $
# Maintainer: damir <damir@archlinux.org>
# Contributor: Gan Lu <rhythm.gan@gmail.com>
pkgname=scim
pkgver=1.4.9
pkgrel=1
pkgdesc="A Input Method development platform"
arch=("i686" "x86_64")
url="http://www.scim-im.org/projects/scim"
license=('GPL')
depends=('gtk2' 'gcc-libs')
makedepends=('intltool')
backup=('etc/scim/config' 'etc/scim/global')
options=('!libtool')
install=scim.install
source=(http://downloads.sourceforge.net/sourceforge/scim/$pkgname-$pkgver.tar.gz)
md5sums=('975ba34b01304ea8166ac8ea27aa9e88')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc \
--with-gnu-ld --with-x --disable-static || return 1
make || return 1
make DESTDIR=$startdir/pkg install || return 1
}