You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
46 lines
1.7 KiB
Tcl
46 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 R 1.0
|
|
|
|
R.setup cran osqp-r osqp 0.6.3.3
|
|
revision 0
|
|
categories-append math
|
|
maintainers nomaintainer
|
|
license Apache-2
|
|
description Quadratic programming solver using the OSQP library
|
|
long_description Provides bindings to the OSQP solver. The OSQP solver is a numerical optimization package \
|
|
for solving convex quadratic programs, written in C and based on the alternating direction method of multipliers.
|
|
homepage https://osqp.org
|
|
checksums rmd160 a0455dc5563fbaea3e66cd6ddadc100cbb7264ba \
|
|
sha256 ff3d8e4ec7764333144d461eb5ea7a4adbf5b5f29f84c3ec3e60a93802e2f5bb \
|
|
size 144103
|
|
|
|
depends_build-append \
|
|
path:bin/cmake:cmake
|
|
depends_lib-append port:R-R6 \
|
|
port:R-Rcpp
|
|
|
|
patchfiles patch-archflags-compiler.diff
|
|
|
|
post-patch {
|
|
reinplace "s,@ARCHFLAGS@,[get_canonical_archflags cxx]," ${worksrcpath}/src/Makevars
|
|
reinplace "s,@CC@,${configure.cc}," ${worksrcpath}/src/Makevars
|
|
reinplace "s,@CXX@,${configure.cxx}," ${worksrcpath}/src/Makevars
|
|
reinplace "s,@ARCH@,${configure.build_arch}," ${worksrcpath}/src/osqp_sources/CMakeLists.txt
|
|
}
|
|
|
|
compiler.cxx_standard 2017
|
|
|
|
build.env-append CC=${configure.cc} CXX=${configure.cxx}
|
|
|
|
depends_test-append port:R-slam \
|
|
port:R-testthat
|
|
|
|
pre-test {
|
|
configure.pre_args-append \
|
|
-DCMAKE_C_COMPILER=${configure.cc} -DCMAKE_CXX_COMPILER=${configure.cxx}
|
|
}
|
|
|
|
test.run yes
|