50 lines
1.6 KiB
Ruby
50 lines
1.6 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.2.tar.gz"
|
||
|
sha256 "30c7f6c84dbb9f6e4fe5bbe4015ed15e2d1402146f8354cfc50c34d8735a49b1"
|
||
|
|
||
|
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
|