diff options
author | Matthias Diener <matthias.diener@gmail.com> | 2018-11-12 23:21:56 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-11-12 23:21:56 -0600 |
commit | dbdee8e542912b25174d4549c738a259d987a2e3 (patch) | |
tree | d990bdfafe76371534a69c3c72f7373cb896b1dc | |
parent | 02cdfd654ec9c83b215a2295230132ad8bc1f47f (diff) | |
download | spack-dbdee8e542912b25174d4549c738a259d987a2e3.tar.gz spack-dbdee8e542912b25174d4549c738a259d987a2e3.tar.bz2 spack-dbdee8e542912b25174d4549c738a259d987a2e3.tar.xz spack-dbdee8e542912b25174d4549c738a259d987a2e3.zip |
chrpath: add new package (#9708)
-rw-r--r-- | var/spack/repos/builtin/packages/chrpath/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/chrpath/package.py b/var/spack/repos/builtin/packages/chrpath/package.py new file mode 100644 index 0000000000..db124354d4 --- /dev/null +++ b/var/spack/repos/builtin/packages/chrpath/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2018 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 Chrpath(AutotoolsPackage): + """chrpath: Modifies the dynamic library load path (rpath and runpath) + of compiled programs and libraries.""" + + homepage = "https://directory.fsf.org/wiki/Chrpath" + url = "https://cfhcable.dl.sourceforge.net/project/pisilinux/source/chrpath-0.16.tar.gz" + + version('0.16', sha256='bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b') |