diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2010-03-25 11:09:44 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2010-03-25 11:09:44 +0100 |
commit | 208877f2cb176d3a175d7e93f8a92a29f115102c (patch) | |
tree | 1435831037898256b933f1dc724d1fc618f22b9e /multihash/PKGBUILD | |
parent | 1cf0efcbdff2eefc070e70f4223821a5e1c4574f (diff) |
Added pyanidb and multihash.
Diffstat (limited to 'multihash/PKGBUILD')
-rw-r--r-- | multihash/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/multihash/PKGBUILD b/multihash/PKGBUILD new file mode 100644 index 0000000..2c91260 --- /dev/null +++ b/multihash/PKGBUILD @@ -0,0 +1,19 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=multihash +pkgver=0.1.1 +pkgrel=1 +pkgdesc="Multihash is a library for hashing with multiple algorithms at the same time." +arch=(i686 x86_64) +url="http://redmine.jvnv.net/projects/multihash" +license=('GPL') +depends=('python' 'boost') +source=(http://archive.jvnv.net/$pkgname-$pkgver.tar.gz) +md5sums=('f444785dd591d5bb364ba58d554ba3c6') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + python setup.py install --root=${pkgdir} || return 1 +} + +# vim:set ts=2 sw=2 et: |