summaryrefslogtreecommitdiff
path: root/~fauno/kyototycoon
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-11-19 10:08:13 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-11-19 10:08:13 -0300
commitcd7749132ba94772795b5d2e28d3c16309c339d7 (patch)
tree6f60f0b00e93ad808ac73d42c0bb928d1b588b06 /~fauno/kyototycoon
parentc0a02f08d66969b92325d421354f4def5c23f84c (diff)
Missing PKGBUILDs
Diffstat (limited to '~fauno/kyototycoon')
-rw-r--r--~fauno/kyototycoon/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/~fauno/kyototycoon/PKGBUILD b/~fauno/kyototycoon/PKGBUILD
new file mode 100644
index 000000000..67d35d650
--- /dev/null
+++ b/~fauno/kyototycoon/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Alexander Duscheleit <jinks@archlinux.us>
+pkgname=kyototycoon
+pkgver=0.9.56
+pkgrel=1
+pkgdesc="A lightweight concurrent remote frontend for Kyoto Cabinet."
+arch=('i686' 'x86_64' 'mips64el')
+url="http://fallabs.com/kyototycoon"
+license=('GPL3')
+depends=('zlib' 'kyotocabinet')
+source=("http://fallabs.com/${pkgname}/pkg/${pkgname}-${pkgver}.tar.gz")
+md5sums=('2e95a4681f6d05f9e363985fbb933948')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make install DESTDIR="$pkgdir/"
+}
+
+# vim:set ts=2 sw=2 et: