2023-01-19 06:30:17 +08:00
|
|
|
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
|
2021-07-09 23:49:10 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-07-09 23:49:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Libnids(AutotoolsPackage):
|
|
|
|
"""Libnids is a library that provides a functionality of one of
|
|
|
|
NIDS (Network Intrusion Detection System) components, namely
|
|
|
|
E-component."""
|
|
|
|
|
|
|
|
homepage = "http://libnids.sourceforge.net/"
|
|
|
|
url = "https://github.com/MITRECND/libnids/archive/1.25.tar.gz"
|
|
|
|
git = "https://github.com/MITRECND/libnids.git"
|
|
|
|
|
|
|
|
version("master", branch="master")
|
|
|
|
version("1.25", sha256="47aa634bd0cdad81e092fac3aef6f12ee346c2f536a1eff4d3d5dacdb6dfcec1")
|
|
|
|
|
|
|
|
depends_on("libpcap")
|
|
|
|
depends_on("libnet")
|
|
|
|
depends_on("glib@2.2.0:")
|