mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
See https://github.com/macports/macports-ports/pull/26909#issuecomment-3339115770
44 lines
1.7 KiB
Tcl
44 lines
1.7 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup cmake 1.1
|
|
PortGroup compilers 1.0
|
|
PortGroup github 1.0
|
|
|
|
github.setup ERGO-Code HiGHS 1.12.0 v
|
|
revision 0
|
|
categories math science
|
|
maintainers nomaintainer
|
|
license MIT
|
|
description Linear optimization software
|
|
long_description HiGHS is a high performance serial and parallel solver \
|
|
for large-scale sparse linear optimization problems.
|
|
homepage https://ergo-code.github.io/HiGHS/stable/
|
|
checksums rmd160 89a326473c382173e75718c791e5f6f416ba5db9 \
|
|
sha256 cd0daddaca57e66b55524588d715dc62dcee06b5ab9ad186412dc23bc71ae342 \
|
|
size 2631655
|
|
github.tarball_from archive
|
|
|
|
if {${os.major} < 13} {
|
|
# Lion+ (with Xcode 4.1+) have git; earlier need to bring their own.
|
|
# On 10.8.5 git fetch fails with ssl error.
|
|
depends_build-append path:bin/git:git
|
|
git.cmd ${prefix}/bin/git
|
|
}
|
|
|
|
depends_lib-append port:zlib
|
|
|
|
compiler.cxx_standard 2011
|
|
compiler.thread_local_storage yes
|
|
# Apple clang on 10.11 and below fails.
|
|
# PPC note: non_lazy_ptr bug seems to have been fixed in gcc 12.3.0. If the error resurfaces, use gcc 11 or earlier.
|
|
compiler.blacklist-append \
|
|
{clang < 900}
|
|
compilers.setup require_fortran
|
|
|
|
configure.args-append -DBUILD_TESTING=ON \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-DFORTRAN=ON
|
|
|
|
test.run yes
|