diff options
author | darmac <xiaojun2@hisilicon.com> | 2021-03-21 18:32:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 11:32:06 +0100 |
commit | 5e0aa8c2e7dcdba7160612a97771c65e94063897 (patch) | |
tree | b2a0a6106ddfb115390ff42c205baa0858dd505f /var | |
parent | 8eb5f017df16a982135242e7a4dae0b9b3b8a001 (diff) | |
download | spack-5e0aa8c2e7dcdba7160612a97771c65e94063897.tar.gz spack-5e0aa8c2e7dcdba7160612a97771c65e94063897.tar.bz2 spack-5e0aa8c2e7dcdba7160612a97771c65e94063897.tar.xz spack-5e0aa8c2e7dcdba7160612a97771c65e94063897.zip |
libndp: new package (#22147)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/libndp/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libndp/package.py b/var/spack/repos/builtin/packages/libndp/package.py new file mode 100644 index 0000000000..d0eb3dd71e --- /dev/null +++ b/var/spack/repos/builtin/packages/libndp/package.py @@ -0,0 +1,24 @@ +# 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 Libndp(AutotoolsPackage): + """Libndp - Library for Neighbor Discovery Protocol""" + + homepage = "http://www.libndp.org/" + url = "https://github.com/jpirko/libndp/archive/v1.7.tar.gz" + + version('1.7', sha256='44be73630ee785ed9f571f9aaaeba0e1d375fa337fd841270034c813b5b0e6fd') + version('1.6', sha256='565d6c4167f83ec697c762ea002f23e8f0b00828d0749b1ce928f068543e5aad') + version('1.5', sha256='42c0a8938d4302c72a42e2d954deef7e4903bb3974da6804a929a3cd0b5b6aa7') + version('1.4', sha256='b9b23d14e9b2d87745810d9d0e956e9fb45f44e794b1629492850c5a8fbbb083') + version('1.3', sha256='e933dc1b9ce85089de8ba0f6ba4c3ec47eba0e9a404e14c1789a6fa9e23793f6') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') |