mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
627 B
Bash
21 lines
627 B
Bash
# Maintainer: damir <damir@archlinux.org>
|
|
|
|
pkgname=anthy
|
|
pkgver=9100h
|
|
_filecode=37536
|
|
pkgrel=1
|
|
pkgdesc="Hiragana text to Kana Kanji mixed text Japanese input method"
|
|
arch=('arm')
|
|
url="http://sourceforge.jp/projects/anthy/"
|
|
license=('LGPL' 'GPL')
|
|
depends=('glibc')
|
|
options=('!libtool' 'force')
|
|
source=("http://downloads.sourceforge.jp/anthy/${_filecode}/$pkgname-$pkgver.tar.gz")
|
|
md5sums=('1f558ff7ed296787b55bb1c6cf131108')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --sysconfdir=/etc || return 1
|
|
make EMACS=emacs sysconfdir=/etc || return 1
|
|
make EMACS=emacs DESTDIR=$pkgdir install || return 1
|
|
}
|