summaryrefslogtreecommitdiff
path: root/community/ibus-m17n
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/ibus-m17n
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/ibus-m17n')
-rw-r--r--community/ibus-m17n/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/community/ibus-m17n/PKGBUILD b/community/ibus-m17n/PKGBUILD
new file mode 100644
index 000000000..37a284df9
--- /dev/null
+++ b/community/ibus-m17n/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 81008 2012-12-09 15:58:18Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Lonfucius <Lonfucius@gmail.com>
+# Contributor: Jesse Jaara <jesse.jaara@gmail.com>
+
+pkgname=ibus-m17n
+pkgver=1.3.4
+pkgrel=3
+pkgdesc='M17N engine for IBus'
+arch=('i686' 'x86_64')
+url='http://code.google.com/p/ibus/'
+license=('LGPL')
+depends=('python2-pyenchant' 'ibus' 'm17n-db' 'm17n-lib')
+source=("http://ibus.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('068de56caa87c002adeae0de9e908f47e3f9fde9')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure \
+ --prefix=/usr \
+ --libexecdir=/usr/lib/ibus
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}