spack/var/spack/repos/builtin/packages/hyperscan/package.py
Harmen Stoppels 7b9f8abce5
Add depends_on([c,cxx,fortran]) (#45217)
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.
2024-07-17 16:07:43 +02:00

44 lines
1.3 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)
import platform
from spack.package import *
_versions = {
"v5.2.1": {
"Linux-aarch64": (
"d2ac1669154ec27b794b64d026ad09caecee6e5e17fd35107595a7517711d2b9",
"https://github.com/kunpengcompute/hyperscan/archive/v5.2.1.aarch64.tar.gz",
),
"Linux-x86_64": (
"fd879e4ee5ecdd125e3a79ef040886978ae8f1203832d5a3f050c48f17eec867",
"https://github.com/intel/hyperscan/archive/v5.2.1.tar.gz",
),
}
}
class Hyperscan(CMakePackage):
"""High-performance regular expression matching library."""
homepage = "https://www.hyperscan.io/"
url = "https://github.com/intel/hyperscan/archive/v5.2.1.tar.gz"
license("BSD-2-Clause")
for ver, packages in _versions.items():
key = "{0}-{1}".format(platform.system(), platform.machine())
pkg = packages.get(key)
if pkg:
version(ver, sha256=pkg[0], url=pkg[1])
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("boost+exception+serialization+random+graph+container")
depends_on("pcre")
depends_on("ragel", type="build")