homebrew-core/Formula/coinutils.rb

57 lines
1.9 KiB
Ruby

class Coinutils < Formula
desc "COIN-OR utilities"
homepage "https://github.com/coin-or/CoinUtils"
url "https://github.com/coin-or/CoinUtils/archive/releases/2.11.4.tar.gz"
sha256 "d4effff4452e73356eed9f889efd9c44fe9cd68bd37b608a5ebb2c58bd45ef81"
bottle do
cellar :any
sha256 "1203aaaec931f868fb71a66e26b113802a14b35065608a28928c776d08304d01" => :catalina
sha256 "6b069af9d6dde2057701b410eaf3e838c01feb8f2da07da54d67eb51ef9731c6" => :mojave
sha256 "1e510876cc284f21136a2eb25695fa87a5787dc51f0fddae9bad04d9512e7659" => :high_sierra
end
depends_on "pkg-config" => :build
depends_on "openblas"
resource "coin-or-tools-data-sample-p0201-mps" do
url "https://raw.githubusercontent.com/coin-or-tools/Data-Sample/releases/1.2.11/p0201.mps"
sha256 "8352d7f121289185f443fdc67080fa9de01e5b9bf11b0bf41087fba4277c07a4"
end
def install
args = [
"--datadir=#{pkgshare}",
"--disable-debug",
"--disable-dependency-tracking",
"--includedir=#{include}/coinutils",
"--prefix=#{prefix}",
"--with-blas-incdir=#{Formula["openblas"].opt_include}",
"--with-blas-lib=-L#{Formula["openblas"].opt_lib} -lopenblas",
"--with-lapack-incdir=#{Formula["openblas"].opt_include}",
"--with-lapack-lib=-L#{Formula["openblas"].opt_lib} -lopenblas",
]
system "./configure", *args
system "make"
# Deparallelize due to error 1: "mkdir: #{include}/coinutils/coin: File exists."
# https://github.com/coin-or/Clp/issues/109
ENV.deparallelize
system "make", "install"
end
test do
resource("coin-or-tools-data-sample-p0201-mps").stage testpath
(testpath/"test.cpp").write <<~EOS
#include <CoinMpsIO.hpp>
int main() {
CoinMpsIO mpsIO;
return mpsIO.readMps("#{testpath}/p0201.mps");
}
EOS
system ENV.cxx, "test.cpp", "-I#{opt_include}/coinutils/coin",
"-L#{opt_lib}", "-lCoinUtils"
system "./a.out"
end
end