
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
# 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 Polymake(Package):
|
|
"""polymake is open source software for research in polyhedral geometry"""
|
|
homepage = "https://polymake.org/doku.php"
|
|
url = "https://polymake.org/lib/exe/fetch.php/download/polymake-3.0r1.tar.bz2"
|
|
|
|
version('3.0r2', '08584547589f052ea50e2148109202ab')
|
|
version('3.0r1', '63ecbecf9697c6826724d8a041d2cac0')
|
|
|
|
# Note: Could also be built with nauty instead of bliss
|
|
|
|
depends_on("bliss")
|
|
depends_on("boost")
|
|
depends_on("cddlib")
|
|
depends_on("gmp")
|
|
depends_on("lrslib")
|
|
depends_on("mpfr")
|
|
depends_on("ppl")
|
|
|
|
def install(self, spec, prefix):
|
|
configure("--prefix=%s" % prefix,
|
|
"--with-bliss=%s" % spec["bliss"].prefix,
|
|
"--with-boost=%s" % spec["boost"].prefix,
|
|
"--with-cdd=%s" % spec["cddlib"].prefix,
|
|
"--with-gmp=%s" % spec["gmp"].prefix,
|
|
"--with-lrs=%s" % spec["lrslib"].prefix,
|
|
"--with-mpfr=%s" % spec["mpfr"].prefix,
|
|
"--with-ppl=%s" % spec["ppl"].prefix)
|
|
make()
|
|
make("install")
|