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