summaryrefslogtreecommitdiff
path: root/community/fcitx-hangul/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/fcitx-hangul/PKGBUILD')
-rw-r--r--community/fcitx-hangul/PKGBUILD35
1 files changed, 35 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
+}
+
+