62 lines
2.1 KiB
Ruby
62 lines
2.1 KiB
Ruby
class OpenBabel < Formula
|
|
desc "Chemical toolbox"
|
|
homepage "https://openbabel.org"
|
|
url "https://github.com/openbabel/openbabel/archive/openbabel-2-4-1.tar.gz"
|
|
version "2.4.1"
|
|
sha256 "594c7f8a83f3502381469d643f7b185882da1dd4bc2280c16502ef980af2a776"
|
|
head "https://github.com/openbabel/openbabel.git"
|
|
|
|
bottle do
|
|
sha256 "28bb84f75639741efbbf3a19ebffc1fc122d15fa74584440b84e265cdfd18db0" => :sierra
|
|
sha256 "d2ca98556d58c6268b6be3f93cfc9a00a79559d081d7713ed14bc7882212b2ef" => :el_capitan
|
|
sha256 "48724ff8b63ea446ea0f2095361ea93de0647eec2e220c8369b9910a11450213" => :yosemite
|
|
end
|
|
|
|
option "with-cairo", "Support PNG depiction"
|
|
option "with-java", "Compile Java language bindings"
|
|
option "with-python", "Compile Python language bindings"
|
|
option "with-wxmac", "Build with GUI"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "cmake" => :build
|
|
depends_on :python => :optional
|
|
depends_on "wxmac" => :optional
|
|
depends_on "cairo" => :optional
|
|
depends_on "eigen"
|
|
depends_on "swig" if build.with?("python") || build.with?("java")
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
args << "-DRUN_SWIG=ON" if build.with?("python") || build.with?("java")
|
|
args << "-DJAVA_BINDINGS=ON" if build.with? "java"
|
|
args << "-DBUILD_GUI=ON" if build.with? "wxmac"
|
|
|
|
# Point cmake towards correct python
|
|
if build.with? "python"
|
|
pypref = `python -c 'import sys;print(sys.prefix)'`.strip
|
|
pyinc = `python -c 'from distutils import sysconfig;print(sysconfig.get_python_inc(True))'`.strip
|
|
args << "-DPYTHON_BINDINGS=ON"
|
|
args << "-DPYTHON_INCLUDE_DIR='#{pyinc}'"
|
|
args << "-DPYTHON_LIBRARY='#{pypref}/lib/libpython2.7.dylib'"
|
|
end
|
|
|
|
args << "-DCAIRO_LIBRARY:FILEPATH=" if build.without? "cairo"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
Java libraries are installed to #{HOMEBREW_PREFIX}/lib so this path should be
|
|
included in the CLASSPATH environment variable.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/obabel", "-:'C1=CC=CC=C1Br'", "-omol"
|
|
end
|
|
end
|