2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2014-03-14 05:29:28 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
class Graphlib(CMakePackage):
|
2014-03-14 05:29:28 +08:00
|
|
|
"""Library to create, manipulate, and export graphs Graphlib."""
|
2016-07-29 04:17:06 +08:00
|
|
|
homepage = "https://github.com/LLNL/graphlib"
|
|
|
|
url = "https://github.com/LLNL/graphlib/archive/v2.0.0.tar.gz"
|
2021-01-06 15:36:56 +08:00
|
|
|
maintainers = ['lee218llnl']
|
2014-03-14 05:29:28 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('2.0.0', sha256='4f4aa1193167c41c8491dec3cf22b1e52a8f0842faab88b7945972f02d2adbcd')
|
|
|
|
version('3.0.0', sha256='c3d889f7bc25b9662426605e52f14cd16f9c05b034738a343890707f5f5681f1')
|
2014-03-14 05:29:28 +08:00
|
|
|
|
2017-08-05 23:15:18 +08:00
|
|
|
depends_on('cmake@2.6:', type='build')
|