diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/fcitx-sunpinyin/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/fcitx-sunpinyin/PKGBUILD')
-rw-r--r-- | community/fcitx-sunpinyin/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/fcitx-sunpinyin/PKGBUILD b/community/fcitx-sunpinyin/PKGBUILD new file mode 100644 index 000000000..d6b1e690c --- /dev/null +++ b/community/fcitx-sunpinyin/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 93370 2013-07-02 09:47:26Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> + +pkgname=fcitx-sunpinyin +pkgver=0.4.1 +pkgrel=1 +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.7' 'sunpinyin>2.0.3' 'sunpinyin-data' 'gtk-update-icon-cache') +makedepends=('cmake') +source=("http://download.fcitx-im.org/$pkgname/$pkgname-${pkgver}.tar.xz") + +build() { + cd "$srcdir/${pkgname}-${pkgver}" + + mkdir -p build + cd build + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + make +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} + +sha512sums=('7ad9065d86d7bb3ceb6536a0fe3559bf2ba60aebe69e2f07c8dadad1a0a2283a1b85712105c6c2a2bf19b9645c4392204db9c3d1db234618ba7f62ee44eda85c') |