blob: 5263aa628dbdd079fe824b178d9bbaff9ce29ea2 (
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 188489 2013-06-15 00:05:53Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: damir <damir@archlinux.org>
pkgname=scim-anthy
pkgver=1.2.7
pkgrel=4
_filecode=37309
pkgdesc='Japanese input method module for SCIM'
url='http://sourceforge.jp/projects/scim-imengine/'
arch=('i686' 'x86_64')
license=('GPL')
depends=('scim' 'anthy')
source=("http://osdn.dl.sourceforge.jp/scim-imengine/${_filecode}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('1429cf202f5cdcfc4733220acbe27dd9edb75db8')
options=('!libtool')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --disable-static
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|