diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2020-04-14 18:39:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 11:39:52 -0500 |
commit | f393355781e3c08a524011b80c54cad441d6be88 (patch) | |
tree | 5c0bc10d8613f1277160c6eadad7aa15605f3b91 | |
parent | e10c134745c35cc8ac85f2da1e48b60bfb0668d7 (diff) | |
download | spack-f393355781e3c08a524011b80c54cad441d6be88.tar.gz spack-f393355781e3c08a524011b80c54cad441d6be88.tar.bz2 spack-f393355781e3c08a524011b80c54cad441d6be88.tar.xz spack-f393355781e3c08a524011b80c54cad441d6be88.zip |
libtree: new package at 1.0.3 (#16036)
* Add new package libtree
* Fix linter issues
-rw-r--r-- | var/spack/repos/builtin/packages/libtree/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libtree/package.py b/var/spack/repos/builtin/packages/libtree/package.py new file mode 100644 index 0000000000..ca99028bfd --- /dev/null +++ b/var/spack/repos/builtin/packages/libtree/package.py @@ -0,0 +1,18 @@ +# 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 Libtree(CMakePackage): + """ldd as a tree with an option to bundle dependencies into a + single folder""" + + homepage = "https://github.com/haampie/libtree" + url = "https://github.com/haampie/libtree/releases/download/v1.0.3/sources.tar.gz" + + maintainers = ['haampie'] + + version('1.0.3', sha256='67ce886c191d50959a5727246cdb04af38872cd811c9ed4e3822f77a8f40b20b')
\ No newline at end of file |