net-snmp: new package (#22154)
This commit is contained in:
parent
404d4dde48
commit
622b6d761d
1 changed files with 22 additions and 0 deletions
22
var/spack/repos/builtin/packages/net-snmp/package.py
Normal file
22
var/spack/repos/builtin/packages/net-snmp/package.py
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# 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 NetSnmp(AutotoolsPackage):
|
||||||
|
"""A SNMP application library, tools and daemon."""
|
||||||
|
|
||||||
|
homepage = "http://www.net-snmp.org/"
|
||||||
|
url = "https://sourceforge.net/projects/net-snmp/files/net-snmp/5.9/net-snmp-5.9.tar.gz"
|
||||||
|
|
||||||
|
version('5.9', sha256='04303a66f85d6d8b16d3cc53bde50428877c82ab524e17591dfceaeb94df6071')
|
||||||
|
|
||||||
|
depends_on('perl-extutils-makemaker')
|
||||||
|
depends_on('ncurses')
|
||||||
|
|
||||||
|
def configure_args(self):
|
||||||
|
args = ['--with-defaults', 'LIBS=-ltinfo']
|
||||||
|
return args
|
Loading…
Reference in a new issue