diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-15 11:07:44 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-11-15 11:07:44 -0500 |
commit | ceb71fa7012f347bd15179693d2484c1b5418505 (patch) | |
tree | 1eca7f8923823f94aa9a6cd295d0c0017c47c059 /~fauno/kyototycoon/PKGBUILD | |
parent | b1c72d09dd64bffc2fa820bf0927623efc8a394f (diff) | |
parent | ecc0a835e2453a8d44a08883bcd3b3f753ffce47 (diff) | |
download | abslibre-ceb71fa7012f347bd15179693d2484c1b5418505.tar.gz abslibre-ceb71fa7012f347bd15179693d2484c1b5418505.tar.bz2 abslibre-ceb71fa7012f347bd15179693d2484c1b5418505.zip |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to '~fauno/kyototycoon/PKGBUILD')
-rw-r--r-- | ~fauno/kyototycoon/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/~fauno/kyototycoon/PKGBUILD b/~fauno/kyototycoon/PKGBUILD new file mode 100644 index 000000000..af88f6020 --- /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 conncurent remote frontend for Kyoto Cabinet." +arch=('i686' 'x86_64') +url="http://fallabs.com/kyototycoon" +license=('GPL3') +depends=('zlib' 'kyotocabinet') +source=("http://fallabs.com/${pkgname}/pkg/${pkgname}-${pkgver}.tar.gz") +sha256sums=('553e4ea83237d9153cc5e17881092cefe0b224687f7ebcc406b061b2f31c75c6') + +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: |