core/anthy/PKGBUILD
2010-06-07 22:16:47 +00:00

28 lines
857 B
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=anthy
pkgver=9100h
pkgrel=1
pkgdesc="Hiragana text to Kana Kanji mixed text Japanese input method"
arch=("i686" "x86_64")
url="http://sourceforge.jp/projects/anthy/"
license=('LGPL' 'GPL')
depends=('glibc')
options=('!libtool' 'force')
source=("http://chakra-project.org/sources/anthy/$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
}