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.3.2.tar.gz" sha256 "2e3292c4b87ef1a9f9b32240b3c46f70b0a5e3c77b914df3266ba2e70f7d6da4" head "https://github.com/ibex-team/ibex-lib.git" bottle do cellar :any sha256 "fc45300182956cefbbd1686afec577f403c20bc57dfac3c03ab3382c7629a6c5" => :sierra sha256 "f5a28a4757a34f6d9a52771d6c8f27d7cf14d3b658c027d752b926e48c5e0d39" => :el_capitan sha256 "2202b92b69198bbf1a2d0a3b068ac17a6340ee896a2c05df0b0bdeb7a1e9ebd6" => :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" option "without-param-estim", "Don't build the Parameter Estimation (enhanced Q-intersection algorithm) plugin" depends_on :java => ["1.8+", :optional] depends_on "bison" => :build depends_on "flex" => :build depends_on "pkg-config" => :build def install 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-affine --with-optim ] args << "--with-jni" if build.with? "java" args << "--with-ampl" if build.with? "ampl" args << "--with-ensta-robotics" if build.with? "ensta-robotics" args << "--with-param-estim" if build.with? "param-estim" system "./waf", "configure", *args system "make", "-C", "3rd/filibsrc" system "./waf", "build" system "./waf", "install" pkgshare.install %w[examples benchs] (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/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 := -ffloat-store -I#{include} -I#{include}/ibex" s.gsub! /LIBS.*pkg-config --libs ibex./, "LIBS := -L#{lib} -libex -lprim -lClp -lCoinUtils -lm" 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