From b9f63ab40bb9eb68f320d517fb81fb5bdfc3405c Mon Sep 17 00:00:00 2001 From: Dave Keeshan <96727608+davekeeshan@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:18:58 +0000 Subject: opensta: add new package (#41484) * Add opensta, is allows 2 variants, zlib and cudd, but they are both enabled by default * Remove unused import, os --- .../repos/builtin/packages/opensta/package.py | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 var/spack/repos/builtin/packages/opensta/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/opensta/package.py b/var/spack/repos/builtin/packages/opensta/package.py new file mode 100644 index 0000000000..691910cf04 --- /dev/null +++ b/var/spack/repos/builtin/packages/opensta/package.py @@ -0,0 +1,47 @@ +# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class Opensta(CMakePackage): + """ + OpenSTA is a gate level static timing verifier. As a stand-alone executable + it can be used to verify the timing of a design using standard file formats. + + * Verilog netlist + * Liberty library + * SDC timing constraints + * SDF delay annotation + * SPEF parasitics + + """ + + homepage = "https://github.com/parallaxsw/OpenSTA" + git = "https://github.com/parallaxsw/OpenSTA.git" + + maintainers("davekeeshan") + + version("master", branch="master") + + variant("zlib", default=True, description="build with zlib support") + variant("cudd", default=True, description="build with cudd support") + + depends_on("tcl@8.6.11", type="build") + depends_on("flex", type="build") + depends_on("swig", type="build") + depends_on("llvm") + depends_on("zlib", type="build", when="+zlib") + depends_on("cudd", type="build", when="+cudd") + + def cmake_args(self): + args = [] + if self.spec.satisfies("+zlib"): + args.append(f"-DZLIB_ROOT={self.spec['zlib'].prefix}") + if self.spec.satisfies("+cudd"): + args.append("-DUSE_CUDD=ON ") + args.append(f"-DCUDD_DIR={self.spec['cudd'].prefix}") + + return args -- cgit v1.2.3-60-g2f50