2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-06-19 06:03:09 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-06-19 06:03:09 +08:00
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
2016-08-24 01:52:28 +08:00
|
|
|
|
2016-06-19 06:03:09 +08:00
|
|
|
class Lrslib(Package):
|
|
|
|
"""lrslib Ver 6.2 is a self-contained ANSI C implementation of the
|
|
|
|
reverse search algorithm for vertex enumeration/convex hull
|
|
|
|
problems and comes with a choice of three arithmetic packages"""
|
|
|
|
homepage = "http://cgm.cs.mcgill.ca/~avis/C/lrs.html"
|
|
|
|
url = "http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-062.tar.gz"
|
2016-08-24 02:57:29 +08:00
|
|
|
|
2016-08-24 01:52:28 +08:00
|
|
|
version('6.2', 'be5da7b3b90cc2be628dcade90c5d1b9')
|
|
|
|
version('6.1', '0b3687c8693cd7d1f234a3f65e147551')
|
|
|
|
version('6.0', 'd600a2e62969ad03f7ab2f85f1b3709c')
|
|
|
|
version('5.1', 'cca323eee8bf76f598a13d7bf67cc13d')
|
|
|
|
version('4.3', '86dd9a45d20a3a0069f77e61be5b46ad')
|
2016-06-19 06:03:09 +08:00
|
|
|
|
|
|
|
# Note: lrslib can also be built with Boost, and probably without gmp
|
|
|
|
|
|
|
|
# depends_on("boost")
|
|
|
|
depends_on("gmp")
|
2016-08-24 01:52:28 +08:00
|
|
|
depends_on("libtool", type="build")
|
2016-06-19 06:03:09 +08:00
|
|
|
|
|
|
|
patch("Makefile.spack.patch")
|
|
|
|
|
2016-10-21 22:49:36 +08:00
|
|
|
def url_for_version(self, version):
|
|
|
|
url = "http://cgm.cs.mcgill.ca/~avis/C/lrslib/archive/lrslib-0{0}.tar.gz"
|
|
|
|
return url.format(version.joined)
|
|
|
|
|
2016-06-19 06:03:09 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
# The Makefile isn't portable; use our own instead
|
|
|
|
makeargs = ["-f", "Makefile.spack",
|
|
|
|
"PREFIX=%s" % prefix,
|
|
|
|
# "BOOST_PREFIX=%s" % spec["boost"].prefix,
|
|
|
|
"GMP_PREFIX=%s" % spec["gmp"].prefix]
|
|
|
|
make(*makeargs)
|
|
|
|
make("install", *makeargs)
|