summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/openslp/package.py
blob: 1887fe419c68199757d7f474d5275256bb3fd3f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2013-2023 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.package 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"