summaryrefslogtreecommitdiff
path: root/community/fcitx-sunpinyin/PKGBUILD
blob: b281b22464bf231bfdafd0bae56a61daa5e026ab (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
27
28
29
30
31
# $Id: PKGBUILD 81657 2012-12-26 06:18:47Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>

pkgname=fcitx-sunpinyin
pkgver=0.3.9
pkgrel=3
pkgdesc="Fcitx Wrapper for sunpinyin, Statistical Language Model based pinyin IME by Sun"
arch=('i686' 'x86_64')
url="http://code.google.com/p/fcitx"
license=('GPL')
install=fcitx-sunpinyin.install
depends=('fcitx>=4.2.5' 'sunpinyin>2.0.3')
makedepends=('cmake' 'intltool')
source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz")
md5sums=('de221daa7b3790b22f5a95d7091d0e38')

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
}