summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-09-24 09:02:15 +0800
committerGitHub <noreply@github.com>2020-09-23 20:02:15 -0500
commitd72c73cd60dfac630cc4763f1af8ae4ec2129472 (patch)
treed9320d8bbb825bdecbc27369bcc3c7b3d51ce556
parent5cf8fd4cb3d4388b4f1899d2a849cfb6d39b4d28 (diff)
downloadspack-d72c73cd60dfac630cc4763f1af8ae4ec2129472.tar.gz
spack-d72c73cd60dfac630cc4763f1af8ae4ec2129472.tar.bz2
spack-d72c73cd60dfac630cc4763f1af8ae4ec2129472.tar.xz
spack-d72c73cd60dfac630cc4763f1af8ae4ec2129472.zip
Add new package: bird (#18833)
-rw-r--r--var/spack/repos/builtin/packages/bird/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/bird/package.py b/var/spack/repos/builtin/packages/bird/package.py
new file mode 100644
index 0000000000..bf0a6209a5
--- /dev/null
+++ b/var/spack/repos/builtin/packages/bird/package.py
@@ -0,0 +1,27 @@
+# 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 Bird(AutotoolsPackage):
+ """The BIRD project aims to develop a dynamic IP routing daemon with
+ full support of all modern routing protocols, easy to use
+ configuration interface and powerful route filtering language,
+ primarily targeted on (but not limited to) Linux and other UNIX-like
+ systems and distributed under the GNU General Public License."""
+
+ homepage = "http://bird.network.cz/"
+ url = "https://github.com/BIRD/bird/archive/v2.0.2.tar.gz"
+
+ version('2.0.2', sha256='bd42d48fbcc2c0046d544f1183cd98193ff15b792d332ff45f386b0180b09335')
+ version('2.0.1', sha256='cd6ea4a39ca97ad16d364bf80f919f0e75eba02dd7fe46be40f55d78d022244a')
+
+ depends_on('autoconf', type='build')
+ depends_on('automake', type='build')
+ depends_on('libtool', type='build')
+ depends_on('m4', type='build')
+ depends_on('ncurses')
+ depends_on('readline')