summaryrefslogtreecommitdiff
path: root/community/fcitx-hangul
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-08 02:04:18 -0800
committerroot <root@rshg054.dnsready.net>2012-12-08 02:04:18 -0800
commitb8c6ff8db00ce5eec5e6f20a90e8f8ec993ef3d5 (patch)
treed5f2cb92d1607745717cde77e321269c384da4bb /community/fcitx-hangul
parent7de07e40e2c0c078a35c5092e1f2defb65d1741e (diff)
Sat Dec 8 01:58:23 PST 2012
Diffstat (limited to 'community/fcitx-hangul')
-rw-r--r--community/fcitx-hangul/PKGBUILD35
-rw-r--r--community/fcitx-hangul/fcitx-hangul.install11
2 files changed, 46 insertions, 0 deletions
diff --git a/community/fcitx-hangul/PKGBUILD b/community/fcitx-hangul/PKGBUILD
new file mode 100644
index 000000000..d0732f8ff
--- /dev/null
+++ b/community/fcitx-hangul/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 80966 2012-12-08 01:28:14Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+
+pkgname=fcitx-hangul
+pkgver=0.1.2
+pkgrel=2
+pkgdesc="Hangul (Korean) support for fcitx"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/fcitx/"
+license=('GPL2')
+depends=('fcitx>=4.2.2' 'libhangul')
+makedepends=('cmake' 'intltool')
+install="$pkgname.install"
+source=("http://fcitx.googlecode.com/files/$pkgname-$pkgver.tar.xz")
+sha1sums=('30648e569ea75e2a734ed98f8cc90b0a656a6bf5')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ msg "Starting make..."
+
+ 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
+}
+
+
diff --git a/community/fcitx-hangul/fcitx-hangul.install b/community/fcitx-hangul/fcitx-hangul.install
new file mode 100644
index 000000000..c0797237a
--- /dev/null
+++ b/community/fcitx-hangul/fcitx-hangul.install
@@ -0,0 +1,11 @@
+post_install() {
+ xdg-icon-resource forceupdate --theme hicolor &> /dev/null
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}