mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
652 B
Bash
22 lines
652 B
Bash
# $Id: PKGBUILD 28127 2009-02-28 00:13:04Z eric $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
|
|
pkgname=scim-anthy
|
|
pkgver=1.2.7
|
|
pkgrel=1
|
|
_filecode=37309
|
|
pkgdesc="Japanese Anthy input method module for SCIM"
|
|
arch=("i686" "x86_64")
|
|
url="http://sourceforge.jp/projects/scim-imengine/"
|
|
license=('GPL')
|
|
depends=('scim>=1.4.8' 'anthy>=9100h')
|
|
options=('!libtool')
|
|
source=(http://osdn.dl.sourceforge.jp/scim-imengine/$_filecode/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('8d06bfd46839c771401b9f176be8818f')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR=$pkgdir install || return 1
|
|
}
|