summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/lksctp-tools/package.py
blob: 957e4a1774c86c0f8ae3e5bc84c2516839dd5c4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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 LksctpTools(AutotoolsPackage):
    """A Linux SCTP helper library"""

    homepage = "https://github.com/sctp/lksctp-tools"
    url = "https://github.com/sctp/lksctp-tools/archive/v1.0.18.tar.gz"

    license("GPL-2.0-or-later AND LGPL-2.1-or-later")

    version("1.0.18", sha256="3e9ab5b3844a8b65fc8152633aafe85f406e6da463e53921583dfc4a443ff03a")

    depends_on("autoconf", type="build")
    depends_on("automake", type="build")
    depends_on("libtool", type="build")
    depends_on("m4", type="build")