add judy dynamic array/meta-trie/hash table lib

Just adding judy.
This commit is contained in:
Tom Scogland 2015-11-20 12:14:21 -08:00
parent 34e445a480
commit 34700d560f

View File

@ -0,0 +1,15 @@
from spack import *
class Judy(Package):
"""A general-purpose dynamic array, associative array and hash-trie - Judy"""
homepage = "http://judy.sourceforge.net/"
url = "http://downloads.sourceforge.net/project/judy/judy/Judy-1.0.5/Judy-1.0.5.tar.gz"
version('1.0.5', '115a0d26302676e962ae2f70ec484a54')
parallel = False
def install(self, spec, prefix):
configure('--prefix=%s' % prefix)
make()
make("install")