diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-07-09 23:49:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-09 17:49:10 +0200 |
commit | d734df705a80873dfe49db10ee62efed66471505 (patch) | |
tree | 17de1c1b75db68211d08085de845ad0ad0601f16 /var | |
parent | 2a858f8f3d18ac22eff6ceccb3ceb44e5ad93486 (diff) | |
download | spack-d734df705a80873dfe49db10ee62efed66471505.tar.gz spack-d734df705a80873dfe49db10ee62efed66471505.tar.bz2 spack-d734df705a80873dfe49db10ee62efed66471505.tar.xz spack-d734df705a80873dfe49db10ee62efed66471505.zip |
libnids: add new package (#22153)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libnids/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libnids/package.py b/var/spack/repos/builtin/packages/libnids/package.py new file mode 100644 index 0000000000..95fc287aef --- /dev/null +++ b/var/spack/repos/builtin/packages/libnids/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2021 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 import * + + +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:') |