
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.
40 lines
1.6 KiB
Python
40 lines
1.6 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 Oniguruma(AutotoolsPackage):
|
|
"""Regular expression library."""
|
|
|
|
homepage = "https://github.com/kkos/oniguruma"
|
|
url = "https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz"
|
|
|
|
license("BSD-2-Clause")
|
|
|
|
version("6.9.9", sha256="60162bd3b9fc6f4886d4c7a07925ffd374167732f55dce8c491bfd9cd818a6cf")
|
|
version("6.9.8", sha256="28cd62c1464623c7910565fb1ccaaa0104b2fe8b12bcd646e81f73b47535213e")
|
|
version("6.9.4", sha256="4669d22ff7e0992a7e93e116161cac9c0949cd8960d1c562982026726f0e6d53")
|
|
version("6.1.3", sha256="480c850cd7c7f2fcaad0942b4a488e2af01fbb8e65375d34908f558b432725cf")
|
|
|
|
depends_on("c", type="build") # generated
|
|
|
|
@property
|
|
def libs(self):
|
|
return find_libraries("libonig", root=self.prefix, recursive=True)
|
|
|
|
@run_after("install")
|
|
@on_package_attributes(run_tests=True)
|
|
def configuration_check(self):
|
|
onig_config = Executable(join_path(self.prefix.bin, "onig-config"))
|
|
|
|
assert (
|
|
onig_config("--cflags", output=str).rstrip()
|
|
== self.spec["oniguruma"].headers.include_flags
|
|
)
|
|
assert onig_config("--libs", output=str).rstrip() == self.spec["oniguruma"].libs.ld_flags
|
|
assert onig_config("--prefix", output=str).rstrip() == self.prefix
|
|
assert onig_config("--exec-prefix", output=str).rstrip() == self.prefix
|