homebrew-core/Formula/ipopt.rb
2019-12-30 18:16:14 +01:00

81 lines
2.6 KiB
Ruby

class Ipopt < Formula
desc "Interior point optimizer"
homepage "https://projects.coin-or.org/Ipopt/"
url "https://www.coin-or.org/download/source/Ipopt/Ipopt-3.12.13.tgz"
sha256 "aac9bb4d8a257fdfacc54ff3f1cbfdf6e2d61fb0cf395749e3b0c0664d3e7e96"
revision 4
head "https://github.com/coin-or/Ipopt.git"
bottle do
cellar :any
sha256 "fe3624f935fb3e4f485092fd488b79a9d9ab984dc7c0bc5dd50da611c9c329c7" => :catalina
sha256 "5995a22204083377bcd6ea49f1514cde44c6de113c7df15cfd890462ece24699" => :mojave
sha256 "1f45d8b3f426977b1f9f8622fcce23c326ef98ecef16604e7569c2e9655b4b0d" => :high_sierra
end
depends_on "pkg-config" => [:build, :test]
depends_on "gcc"
depends_on "openblas"
resource "mumps" do
url "http://mumps.enseeiht.fr/MUMPS_5.2.1.tar.gz"
sha256 "d988fc34dfc8f5eee0533e361052a972aa69cc39ab193e7f987178d24981744a"
# MUMPS does not provide a Makefile.inc customized for macOS.
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/ab96a8b/ipopt/mumps-makefile-inc-generic-seq.patch"
sha256 "0c570ee41299073ec2232ad089d8ee10a2010e6dfc9edc28f66912dae6999d75"
end
end
def install
ENV.delete("MPICC")
ENV.delete("MPICXX")
ENV.delete("MPIFC")
resource("mumps").stage do
cp "Make.inc/Makefile.inc.generic.SEQ", "Makefile.inc"
inreplace "Makefile.inc", "@rpath/", "#{opt_lib}/"
ENV.deparallelize { system "make", "d" }
(buildpath/"mumps_include").install Dir["include/*.h", "libseq/mpi.h"]
lib.install Dir["lib/*.dylib", "libseq/*.dylib", "PORD/lib/*.dylib"]
end
args = [
"--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--enable-shared",
"--prefix=#{prefix}",
"--with-blas=-L#{Formula["openblas"].opt_lib} -lopenblas",
"--with-mumps-incdir=#{buildpath}/mumps_include",
"--with-mumps-lib=-L#{lib} -ldmumps -lmpiseq -lmumps_common -lopenblas -lpord",
]
system "./configure", *args
system "make"
ENV.deparallelize
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <cassert>
#include <IpIpoptApplication.hpp>
#include <IpReturnCodes.hpp>
#include <IpSmartPtr.hpp>
int main() {
Ipopt::SmartPtr<Ipopt::IpoptApplication> app = IpoptApplicationFactory();
const Ipopt::ApplicationReturnStatus status = app->Initialize();
assert(status == Ipopt::Solve_Succeeded);
return 0;
}
EOS
pkg_config_flags = `pkg-config --cflags --libs ipopt`.chomp.split
system ENV.cxx, "test.cpp", *pkg_config_flags
system "./a.out"
end
end