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
This commit is contained in:
Dave Keeshan 2023-12-07 17:18:58 +00:00 committed by GitHub
parent 4417b1f9ee
commit b9f63ab40b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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