summaryrefslogtreecommitdiff
path: root/community/fcitx-cloudpinyin
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-11-11 01:47:32 -0800
committerroot <root@rshg054.dnsready.net>2012-11-11 01:47:32 -0800
commitc1c596c922f0dc8622339011db936c531647203d (patch)
tree2855b79d508821e325c1389ae85a521c5214c09a /community/fcitx-cloudpinyin
parent15afd71b619115bc72670c443a6d1b75275ead0c (diff)
Sun Nov 11 01:44:00 PST 2012
Diffstat (limited to 'community/fcitx-cloudpinyin')
-rw-r--r--community/fcitx-cloudpinyin/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/fcitx-cloudpinyin/PKGBUILD b/community/fcitx-cloudpinyin/PKGBUILD
new file mode 100644
index 000000000..dd9a95a52
--- /dev/null
+++ b/community/fcitx-cloudpinyin/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 79682 2012-11-11 01:41:35Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+# Contributor: poplarch <poplarch@gmail.com>
+
+pkgname=fcitx-cloudpinyin
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="Standalone module for fcitx that uses pinyin API on the internet to provide additional input candidates"
+arch=('i686' 'x86_64')
+url="https://github.com/csslayer/fcitx-cloudpinyin"
+license=('GPL')
+depends=('curl' 'fcitx>=4.2.6')
+makedepends=('cmake' 'intltool')
+source=(http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz)
+md5sums=('8bffd65fe2172d61edde46ad53380150')
+
+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
+}