blob: 5f41b74e2c6216891dd1ffa2ddf4543164dda0ff (
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
|
# $Id: PKGBUILD 197859 2013-10-30 11:18:33Z allan $
# Contributor: damir <damir@archlinux.org>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
pkgname=anthy
pkgver=9100h
_filecode=37536
pkgrel=3
pkgdesc='Hiragana text to Kana Kanji mixed text Japanese input method'
arch=('i686' 'x86_64')
url='http://sourceforge.jp/projects/anthy/'
license=('LGPL' 'GPL')
source=("http://dl.sourceforge.jp/anthy/${_filecode}/${pkgname}-${pkgver}.tar.gz")
sha1sums=('bfea9e74e208c4b976b6bd7ac6784cd290c636fd')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc --disable-static
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make EMACS=emacs DESTDIR="${pkgdir}" install
}
|