summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-04-21 05:23:47 +0800
committerGitHub <noreply@github.com>2020-04-20 16:23:47 -0500
commite8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5 (patch)
tree903b591566cb1fcc41796f3f49017ea9b0a22fb5 /var
parentcf12541281fe7a252c50483dde2caa2c532cb233 (diff)
downloadspack-e8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5.tar.gz
spack-e8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5.tar.bz2
spack-e8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5.tar.xz
spack-e8a7e4f5ecd0c1a6dcd9f0769f16f5ad2569dff5.zip
Add new package: bgpdump (#16122)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/bgpdump/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bgpdump/package.py b/var/spack/repos/builtin/packages/bgpdump/package.py
new file mode 100644
index 0000000000..e708860dc3
--- /dev/null
+++ b/var/spack/repos/builtin/packages/bgpdump/package.py
@@ -0,0 +1,21 @@
+# Copyright 2013-2020 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 Bgpdump(AutotoolsPackage):
+ """Utility and C Library for parsing MRT files"""
+
+ homepage = "https://github.com/RIPE-NCC/bgpdump/wiki"
+ git = "https://github.com/RIPE-NCC/bgpdump.git"
+
+ version('master', branch='master')
+
+ depends_on('m4', type='build')
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('bzip2')