diff options
author | darmac <xiaojun2@hisilicon.com> | 2020-09-24 09:38:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 20:38:38 -0500 |
commit | 1b707988c528c46185e300b80d37c042a03c00d1 (patch) | |
tree | 19cbcb8bc7422a3227b949d96b5a17fa0ab2b61b | |
parent | f87d032228d3077fcffa3f762db793b3794e391d (diff) | |
download | spack-1b707988c528c46185e300b80d37c042a03c00d1.tar.gz spack-1b707988c528c46185e300b80d37c042a03c00d1.tar.bz2 spack-1b707988c528c46185e300b80d37c042a03c00d1.tar.xz spack-1b707988c528c46185e300b80d37c042a03c00d1.zip |
Add new package: openslp (#18791)
-rw-r--r-- | var/spack/repos/builtin/packages/openslp/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/openslp/package.py b/var/spack/repos/builtin/packages/openslp/package.py new file mode 100644 index 0000000000..5957777b5f --- /dev/null +++ b/var/spack/repos/builtin/packages/openslp/package.py @@ -0,0 +1,28 @@ +# 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 Openslp(AutotoolsPackage): + """OpenSLP project is an effort to develop an open-source, + commercial-grade, implementation of IETF Standards track + Service Location Protocol (RFC 2608). The interface conforms + to IETF Standards track, "An API for Service Location" + (RFC 2614)""" + + homepage = "http://www.openslp.org/" + url = "https://github.com/openslp-org/openslp/archive/openslp-2.0.0.tar.gz" + + version('2.0.0', sha256='9dda45ff52cf8561ca1414ac8b4947ed2d9b43e66aec03478fa0ed37121a5ea2') + + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + depends_on('flex', type='build') + depends_on('byacc', type='build') + + configure_directory = 'openslp' |