summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/graphlib/package.py
blob: ddac0b2b66ac310959cad56df749e9a1cbae2ddb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from spack import *

class Graphlib(Package):
    """Library to create, manipulate, and export graphs Graphlib."""
    homepage = "http://https://github.com/lee218llnl/graphlib"
    url      = "https://github.com/lee218llnl/graphlib/archive/v2.0.0.tar.gz"

    version('2.0.0', '43c6df84f1d38ba5a5dce0ae19371a70')

    def install(self, spec, prefix):
        cmake(".", *std_cmake_args)

        make()
        make("install")