blob: e702643b686b8481d632a16573198f7027e57952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $Id: PKGBUILD 148920 2012-02-05 11:55:57Z ibiru $
# Contributor: damir <damir@archlinux.org>
# Contributor: Gan Lu <rhythm.gan@gmail.com>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=scim-tables
pkgver=0.5.10
pkgrel=2
pkgdesc='Generic table input method module for SCIM'
url='http://www.scim-im.org/'
arch=('i686' 'x86_64')
license=('GPL')
depends=('scim')
options=('!libtool')
source=("http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.gz")
sha1sums=('c6e6fbd9999ceba5cb982349fee8391e16a9c2fe')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --enable-static=no
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|