summaryrefslogtreecommitdiff
path: root/community/libskk/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libskk/PKGBUILD')
-rw-r--r--community/libskk/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/community/libskk/PKGBUILD b/community/libskk/PKGBUILD
new file mode 100644
index 000000000..2244c39de
--- /dev/null
+++ b/community/libskk/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 112574 2014-06-03 16:49:22Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+# Contributor: eagletmt <eagletmt@gmail.com>
+# Contributor: kusanaginoturugi <kusanaginoturugi@gmail.com>
+
+pkgname=libskk
+pkgver=1.0.1
+pkgrel=2
+pkgdesc='GObject-based library to deal with Japanese kana-to-kanji conversion method'
+arch=('i686' 'x86_64')
+url='https://github.com/ueno/libskk'
+license=('GPL3')
+depends=('libgee06' 'json-glib')
+makedepends=('intltool')
+source=(https://bitbucket.org/$pkgname/$pkgname/downloads/$pkgname-$pkgver.tar.gz)
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:
+md5sums=('2052bfa898205b641bb2cc448516230f')