2012-07-19 23:17:15 +08:00
|
|
|
#
|
|
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# Maintainer: Weng Xuetian <wengxt@gmail.com>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
|
|
|
|
pkgname=fcitx-anthy
|
2013-07-01 08:57:17 +08:00
|
|
|
pkgver=0.2.0
|
2012-07-19 23:17:15 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="Japanese Input support (Anthy) for fcitx."
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://code.google.com/p/fcitx"
|
|
|
|
license=('GPL')
|
2013-07-01 08:57:17 +08:00
|
|
|
depends=('fcitx>=4.2.8' 'anthy')
|
|
|
|
makedepends=('cmake')
|
|
|
|
source=(http://download.fcitx-im.org/${pkgname}/${pkgname}-${pkgver}.tar.xz)
|
2012-07-19 23:17:15 +08:00
|
|
|
|
|
|
|
build(){
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
rm -rf build
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package ()
|
|
|
|
{
|
|
|
|
cd "$srcdir/${pkgname}-${pkgver}/build"
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
}
|
2013-07-01 08:57:17 +08:00
|
|
|
md5sums=('c02e4393d6141a4d0fa1693bf38a8f79')
|