summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndrew W Elble <aweits@rit.edu>2020-10-21 11:56:16 -0400
committerGitHub <noreply@github.com>2020-10-21 10:56:16 -0500
commitd4a6efd02113a722d6a914035ec65cf67b27bed3 (patch)
treee580aeea7d3de2a6a29fe4b8cb75127ba03f2d63 /var
parente9eb9cdc410e4ae5c9c58f323370e699e7da10c7 (diff)
downloadspack-d4a6efd02113a722d6a914035ec65cf67b27bed3.tar.gz
spack-d4a6efd02113a722d6a914035ec65cf67b27bed3.tar.bz2
spack-d4a6efd02113a722d6a914035ec65cf67b27bed3.tar.xz
spack-d4a6efd02113a722d6a914035ec65cf67b27bed3.zip
scipoptsuite (#19430)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/scipoptsuite/package.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/scipoptsuite/package.py b/var/spack/repos/builtin/packages/scipoptsuite/package.py
new file mode 100644
index 0000000000..6521808f21
--- /dev/null
+++ b/var/spack/repos/builtin/packages/scipoptsuite/package.py
@@ -0,0 +1,30 @@
+# 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)
+
+
+import os
+
+
+class Scipoptsuite(CMakePackage):
+ """The SCIP Optimization Suite is a toolbox for generating and
+ solving mixed integer nonlinear programs, in particular mixed
+ integer linear programs, and constraint integer programs
+
+ Note: A manual download is required for SCIP. Spack will search
+ your current directory for the download file. Alternatively,
+ add this file to a mirror so that Spack can find it. For
+ instructions on how to set up a mirror, see
+ http://spack.readthedocs.io/en/latest/mirrors.html"""
+
+ homepage = "https://scipopt.org"
+ url = "file://{0}/scipoptsuite-7.0.1.tgz".format(os.getcwd())
+ manual_download = True
+
+ version('7.0.1', sha256='971962f2d896b0c8b8fa554c18afd2b5037092685735d9494a05dc16d56ad422')
+
+ depends_on('gmp')
+ depends_on('zlib')
+ depends_on('readline')
+ depends_on('ncurses')