summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authordarmac <xiaojun2@hisilicon.com>2020-03-20 17:11:12 +0800
committerGitHub <noreply@github.com>2020-03-20 10:11:12 +0100
commit6cccce4932cf19eb8d4faac05f5195d93eb8488c (patch)
treeb249a74d06ebca65efc8f8df76ffee58cbab3418 /var
parent03a88a2d3f7884c4298e6ef4430042bfcbdeb71b (diff)
downloadspack-6cccce4932cf19eb8d4faac05f5195d93eb8488c.tar.gz
spack-6cccce4932cf19eb8d4faac05f5195d93eb8488c.tar.bz2
spack-6cccce4932cf19eb8d4faac05f5195d93eb8488c.tar.xz
spack-6cccce4932cf19eb8d4faac05f5195d93eb8488c.zip
add new package lksctp-tools (#15564)
Co-Authored-By: Massimiliano Culpo <massimiliano.culpo@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/lksctp-tools/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lksctp-tools/package.py b/var/spack/repos/builtin/packages/lksctp-tools/package.py
new file mode 100644
index 0000000000..ca168aa320
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lksctp-tools/package.py
@@ -0,0 +1,20 @@
+# 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 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"
+
+ 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')