
- 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
25 lines
702 B
Python
25 lines
702 B
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 Sympol(CMakePackage):
|
|
"""SymPol is a C++ tool to work with symmetric polyhedra"""
|
|
homepage = "http://www.math.uni-rostock.de/~rehn/software/sympol.html"
|
|
url = "http://www.math.uni-rostock.de/~rehn/software/sympol-0.1.8.tar.gz"
|
|
|
|
version('0.1.8', '7cba1997f8532c754cb7259bf70caacb')
|
|
|
|
depends_on("cmake@2.6:", type="build")
|
|
|
|
depends_on("bliss")
|
|
depends_on("boost")
|
|
depends_on("gmp")
|
|
depends_on("lrslib")
|
|
|
|
patch("lrs_mp_close.patch")
|