diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-12-06 21:31:33 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-12-06 19:31:33 -0800 |
commit | fb5880ab144d40600545600a50741dc6b6cbe40e (patch) | |
tree | 044587c4cf2f79e98a4ae7cb868e17d471ef7c21 /var | |
parent | 6ec8e4146fad941bb8730f52e83bd30a89fb949f (diff) | |
download | spack-fb5880ab144d40600545600a50741dc6b6cbe40e.tar.gz spack-fb5880ab144d40600545600a50741dc6b6cbe40e.tar.bz2 spack-fb5880ab144d40600545600a50741dc6b6cbe40e.tar.xz spack-fb5880ab144d40600545600a50741dc6b6cbe40e.zip |
clp: new package at 1.16.11 (#10040)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/clp/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/clp/package.py b/var/spack/repos/builtin/packages/clp/package.py new file mode 100644 index 0000000000..ab918bb9bf --- /dev/null +++ b/var/spack/repos/builtin/packages/clp/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 Clp(AutotoolsPackage): + """Clp (Coin-or linear programming) is an open-source + linear programming solver written in C++.""" + + homepage = "https://projects.coin-or.org/Clp" + url = "https://www.coin-or.org/download/source/Clp/Clp-1.16.11.tgz" + + version('1.16.11', sha256='b525451423a9a09a043e6a13d9436e13e3ee7a7049f558ad41a110742fa65f39') |