Update Bliss

This commit is contained in:
Erik Schnetter 2016-06-18 16:36:43 -04:00
parent a07056d67b
commit 83d4cdc090

View file

@ -26,18 +26,19 @@
from spack import * from spack import *
class Bliss(Package): class Bliss(Package):
"""bliss: A Tool for Computing Automorphism Groups and Canonical Labelings of Graphs""" """bliss: A Tool for Computing Automorphism Groups and Canonical
Labelings of Graphs"""
homepage = "http://www.tcs.hut.fi/Software/bliss/" homepage = "http://www.tcs.hut.fi/Software/bliss/"
url = "http://www.tcs.hut.fi/Software/bliss/bliss-0.73.zip" url = "http://www.tcs.hut.fi/Software/bliss/bliss-0.73.zip"
version('0.73', '72f2e310786923b5c398ba0fc40b42ce')
# Note: Bliss can also be built without gmp, but we don't support this yet # Note: Bliss can also be built without gmp, but we don't support this yet
depends_on("gmp") depends_on("gmp")
depends_on("libtool") depends_on("libtool")
version('0.73', '72f2e310786923b5c398ba0fc40b42ce')
patch("Makefile.spack.patch") patch("Makefile.spack.patch")
def install(self, spec, prefix): def install(self, spec, prefix):