summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/lrslib/package.py
blob: 05b7941fd961cf3f6f2b7bdf95cda4c97f1784f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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 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"

    version('6.2', 'be5da7b3b90cc2be628dcade90c5d1b9')
    version('6.1', '0b3687c8693cd7d1f234a3f65e147551')
    version('6.0', 'd600a2e62969ad03f7ab2f85f1b3709c')
    version('5.1', 'cca323eee8bf76f598a13d7bf67cc13d')
    version('4.3', '86dd9a45d20a3a0069f77e61be5b46ad')

    # Note: lrslib can also be built with Boost, and probably without gmp

    # depends_on("boost")
    depends_on("gmp")
    depends_on("libtool", type="build")

    patch("Makefile.spack.patch")

    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)

    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)