blob: cba955efe0fd64a760117222d78a5556de4ef2a7 (
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
28
|
# $Id: PKGBUILD 198410 2013-10-30 14:42:08Z allan $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Gan Lu <rhythm.gan@gmail.com>
# Contributor: damir <damir@archlinux.org>
pkgname=scim-tables
pkgver=0.5.13
pkgrel=1
pkgdesc='Generic table input method module for SCIM'
url='http://www.scim-im.org/'
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('scim')
makedepends=('intltool')
source=("http://downloads.sourceforge.net/sourceforge/scim/${pkgname}-${pkgver}.tar.xz")
sha1sums=('75363466cfca30e3cdff804e0dad713f12521776')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|