73 lines
2.7 KiB
Ruby
73 lines
2.7 KiB
Ruby
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.4.tar.gz"
|
|
sha256 "0ca340d4092116debb09d85412fdf7f082d08bc99a7d53b0e222ab7d18390a6c"
|
|
head "https://github.com/ibex-team/ibex-lib.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "6fd704a5f75e8f25f94dc4ac12e65a61acdceadb6a7e7e593aacde6410cf2ea6" => :sierra
|
|
sha256 "ecd64c878bd4f7a680a262e7c245d71c3b133c355f3087051986156b651e0b70" => :el_capitan
|
|
sha256 "5a8ecc5f3b8971c4d8c2697c20455d33e769d85313ed07b5a4337528738b2ea2" => :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
|