class Ibex < Formula desc "C++ library for constraint processing over real numbers." homepage "http://www.ibex-lib.org/" url "https://github.com/ibex-team/ibex-lib/archive/ibex-2.5.1.tar.gz" sha256 "6befc72b4c8170c0afede8a45446f6b06b5c93dc00507e50dd3af86bb78d5d9b" head "https://github.com/ibex-team/ibex-lib.git" bottle do cellar :any sha256 "47f1c05e2162b3ad09f00a3b178e3e6c25c7e5c2176092f177b30cdc4b62aa92" => :sierra sha256 "0d5a984662a3a0b4574f32336e984620cd5ead93d52df114614cb8dc18f1bb57" => :el_capitan sha256 "01a360bc65dfb73d3a31289428ca1d990c9aa03ee9e04154bf2ea9cd305c0e99" => :yosemite end option "with-java", "Enable Java bindings for CHOCO solver." option "with-ampl", "Use AMPL file loader plugin" option "without-ensta-robotics", "Don't build the Contractors for robotics (SLAM) plugin" depends_on :java => ["1.8+", :optional] depends_on "bison" => :build depends_on "flex" => :build depends_on "pkg-config" => :build needs :cxx11 def install ENV.cxx11 if build.with?("java") && build.with?("ampl") odie "Cannot set options --with-java and --with-ampl simultaneously for now." end args = %W[ --prefix=#{prefix} --enable-shared --with-optim --optim-lib=soplex ] args << "--with-jni" if build.with? "java" args << "--with-ampl" if build.with? "ampl" args << "--with-param-estim" if build.with? "param-estim" system "./waf", "configure", *args system "./waf", "install" pkgshare.install %w[examples benchs-solver] (pkgshare/"examples/symb01.txt").write <<-EOS.undent function f(x) return ((2*x,-x);(-x,3*x)); end EOS end test do cp_r (pkgshare/"examples").children, testpath cp pkgshare/"benchs-solver/others/cyclohexan3D.bch", testpath/"c3D.bch" # so that pkg-config can remain a build-time only dependency inreplace %w[makefile slam/makefile] do |s| s.gsub! /CXXFLAGS.*pkg-config --cflags ibex./, "CXXFLAGS := -I#{include} -I#{include}/ibex "\ "-I#{include}/ibex/3rd/coin -I#{include}/ibex/3rd" s.gsub! /LIBS.*pkg-config --libs ibex./, "LIBS := -L#{lib} -libex" end system "make", "ctc01", "ctc02", "symb01", "solver01", "solver02" system "make", "-C", "slam", "slam1", "slam2", "slam3" %w[ctc01 ctc02 symb01].each { |a| system "./#{a}" } %w[solver01 solver02].each { |a| system "./#{a}", "c3D.bch", "1e-05", "10" } %w[slam1 slam2 slam3].each { |a| system "./slam/#{a}" } end end