homebrew-core/Formula/rdkit.rb

100 lines
3.7 KiB
Ruby

class Rdkit < Formula
desc "Open-source chemoinformatics library"
homepage "https://rdkit.org/"
url "https://github.com/rdkit/rdkit/archive/Release_2021_09_3.tar.gz"
sha256 "3d9d47e9ea3f7563ca83bf24fc6d3419c3892ea77d831e1cf68d81f602ad1afc"
license "BSD-3-Clause"
head "https://github.com/rdkit/rdkit.git", branch: "master"
livecheck do
url :stable
regex(/^Release[._-](\d+(?:[._]\d+)+)$/i)
strategy :git do |tags|
tags.map { |tag| tag[regex, 1]&.gsub("_", ".") }.compact
end
end
bottle do
sha256 cellar: :any, arm64_monterey: "7b0f16353ac9d13b8d4844b3384baabede7db340661671ac2767918ac88f047b"
sha256 cellar: :any, arm64_big_sur: "5e5e9c310a2e6256afd3be51bde73d5ada47aa842481d1ff79a745e21a8b6189"
sha256 cellar: :any, monterey: "b023e1b6c62628d5b7c23a6d550de6ae2a01c837d1d5cd2fa53771e185eb5e90"
sha256 cellar: :any, big_sur: "1e51cb4bf7700e66825524f5c4418176ac1eea404c16b5e32c95fc5949e344a4"
sha256 cellar: :any, catalina: "97db69d9cdedf2646a92a0a00b28b12442893eb3e4346fe9e68e3fcf0929fb2e"
sha256 cellar: :any_skip_relocation, x86_64_linux: "86ed6137f5afdff12a4a8caa30e056b309a1896684f22f34aa348cafdf0419ce"
end
depends_on "cmake" => :build
depends_on "swig" => :build
depends_on "boost"
depends_on "boost-python3"
depends_on "eigen"
depends_on "freetype"
depends_on "numpy"
depends_on "postgresql"
depends_on "py3cairo"
depends_on "python@3.9"
def install
ENV.cxx11
ENV.libcxx
ENV.append "CFLAGS", "-Wno-parentheses -Wno-logical-op-parentheses -Wno-format"
ENV.append "CXXFLAGS", "-Wno-parentheses -Wno-logical-op-parentheses -Wno-format"
# Get Python location
python_executable = Formula["python@3.9"].opt_bin/"python3"
py3ver = Language::Python.major_minor_version Formula["python@3.9"].opt_bin/"python3"
py3prefix = if OS.mac?
Formula["python@3.9"].opt_frameworks/"Python.framework/Versions/#{py3ver}"
else
Formula["python@3.9"].opt_prefix
end
py3include = "#{py3prefix}/include/python#{py3ver}"
numpy_include = Formula["numpy"].opt_lib/"python#{py3ver}/site-packages/numpy/core/include"
# set -DMAEPARSER and COORDGEN_FORCE_BUILD=ON to avoid conflicts with some formulae i.e. open-babel
args = std_cmake_args + %W[
-DCMAKE_INSTALL_RPATH=#{opt_lib}
-DRDK_INSTALL_INTREE=OFF
-DRDK_BUILD_SWIG_WRAPPERS=OFF
-DRDK_BUILD_AVALON_SUPPORT=ON
-DRDK_BUILD_PGSQL=ON
-DRDK_PGSQL_STATIC=ON
-DMAEPARSER_FORCE_BUILD=ON
-DCOORDGEN_FORCE_BUILD=ON
-DRDK_BUILD_INCHI_SUPPORT=ON
-DRDK_BUILD_CPP_TESTS=OFF
-DRDK_INSTALL_STATIC_LIBS=OFF
-DRDK_BUILD_CAIRO_SUPPORT=ON
-DRDK_BUILD_YAEHMOP_SUPPORT=ON
-DRDK_BUILD_FREESASA_SUPPORT=ON
-DBoost_NO_BOOST_CMAKE=ON
-DPYTHON_INCLUDE_DIR=#{py3include}
-DPYTHON_EXECUTABLE=#{python_executable}
-DPYTHON_NUMPY_INCLUDE_PATH=#{numpy_include}
]
system "cmake", ".", *args
system "make"
system "make", "install"
site_packages = "lib/python#{py3ver}/site-packages"
(prefix/site_packages/"homebrew-rdkit.pth").write libexec/site_packages
end
def caveats
<<~EOS
You may need to add RDBASE to your environment variables.
For Bash, put something like this in your $HOME/.bashrc:
export RDBASE=#{HOMEBREW_PREFIX}/share/RDKit
EOS
end
test do
system Formula["python@3.9"].opt_bin/"python3", "-c", "import rdkit"
(testpath/"test.py").write <<~EOS
from rdkit import Chem ; print(Chem.MolToSmiles(Chem.MolFromSmiles('C1=CC=CN=C1')))
EOS
assert_match "c1ccncc1", shell_output("#{Formula["python@3.9"].opt_bin}/python3 test.py 2>&1")
end
end