summaryrefslogtreecommitdiff
path: root/community/kcm-fcitx
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/kcm-fcitx
parent15afd71b619115bc72670c443a6d1b75275ead0c (diff)
Sun Nov 11 01:44:00 PST 2012
Diffstat (limited to 'community/kcm-fcitx')
-rw-r--r--community/kcm-fcitx/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/kcm-fcitx/PKGBUILD b/community/kcm-fcitx/PKGBUILD
new file mode 100644
index 000000000..c613b1c49
--- /dev/null
+++ b/community/kcm-fcitx/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 79679 2012-11-11 01:36:26Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+# Contributor: poplarch <poplarch@gmail.com>
+
+pkgname=kcm-fcitx
+pkgver=0.4.1
+pkgrel=1
+pkgdesc="KDE Config Module for Fcitx"
+arch=('i686' 'x86_64')
+url="https://github.com/fcitx/kcm-fcitx"
+license=('GPL')
+depends=('fcitx>=4.2.6' 'kdebase-runtime')
+makedepends=('cmake' 'intltool' 'automoc4')
+source=(http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz)
+md5sums=('1a2a9802edf6df79d3883c362ba487f0')
+
+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
+}