
Add language dependencies `c`, `cxx`, and `fortran`. These `depends_on` statements are auto-generated based on file extensions found in source tarballs/zipfiles. The `# generated` comment can be removed by package maintainers after validating correctness.
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# Copyright 2013-2024 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 Libgdsii(AutotoolsPackage):
|
|
"""libGDSII is a C++ library for working with GDSII binary data files,
|
|
intended primarily for use with the computational electromagnetism codes
|
|
scuff-em and meep but sufficiently general-purpose to allow other uses as
|
|
well."""
|
|
|
|
homepage = "https://github.com/HomerReid/libGDSII"
|
|
url = "https://github.com/HomerReid/libGDSII/archive/refs/tags/v0.21.tar.gz"
|
|
|
|
license("GPL-2.0-or-later")
|
|
|
|
version("0.21", sha256="1adc571c6b53df4c08d108f9ac4f4a7fd6fbefd4bc56f74e0b7b2801353671b8")
|
|
|
|
depends_on("cxx", type="build") # generated
|
|
|
|
depends_on("autoconf", type="build")
|
|
depends_on("automake", type="build")
|
|
depends_on("libtool", type="build")
|
|
|
|
@run_before("autoreconf")
|
|
def custom_prepare(self):
|
|
mkdirp("m4")
|
|
touch("ChangeLog")
|
|
|
|
def configure_args(self):
|
|
return ["--enable-maintainer-mode"]
|