summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/glpk/package.py
blob: 2cd7426f7102cfd7c13caa4fef2f79687cb80085 (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
# Copyright 2013-2024 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.package import *


class Glpk(AutotoolsPackage, GNUMirrorPackage):
    """The GLPK (GNU Linear Programming Kit) package is intended for solving
    large-scale linear programming (LP), mixed integer programming
    (MIP), and other related problems. It is a set of routines written
    in ANSI C and organized in the form of a callable library.
    """

    homepage = "https://www.gnu.org/software/glpk"
    gnu_mirror_path = "glpk/glpk-4.65.tar.gz"

    license("GPL-3.0-only")

    version("5.0", sha256="4a1013eebb50f728fc601bdd833b0b2870333c3b3e5a816eeba921d95bec6f15")
    version("4.65", sha256="4281e29b628864dfe48d393a7bedd781e5b475387c20d8b0158f329994721a10")
    version("4.61", sha256="9866de41777782d4ce21da11b88573b66bb7858574f89c28be6967ac22dfaba9")
    version("4.57", sha256="7323b2a7cc1f13e45fc845f0fdca74f4daea2af716f5ad2d4d55b41e8394275c")

    variant("gmp", default=False, description="Activates support for GMP library")

    depends_on("gmp", when="+gmp")

    def configure_args(self):
        options = []

        if "+gmp" in self.spec:
            options.append("--with-gmp")

        return options