homebrew-core/Formula/rdkit.rb

99 lines
3.6 KiB
Ruby

class Rdkit < Formula
desc "Open-source chemoinformatics library"
homepage "https://rdkit.org/"
url "https://github.com/rdkit/rdkit/archive/Release_2021_03_5.tar.gz"
sha256 "ee7ed4189ab03cf805ab9db59121ab3ebcba4c799389d053046d7cab4dd8401e"
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_big_sur: "afc72d00f5d6ce27e32d9f29c8fae0b4e19177b44d7fb626ed0831c336685606"
sha256 cellar: :any, big_sur: "66468b15e7392d673b64fb3ccd88d54d0a1f12fc20741f2aebbfccac7aaeb982"
sha256 cellar: :any, catalina: "1e4bb08e11fd7acb40c17521032f9f99735fde9b8ac0a89c14a8557ea13f8c57"
sha256 cellar: :any, mojave: "88689935bdc08604cecf7f278dade986ea7942cec5f3a9d7d5f1aca16330187f"
sha256 cellar: :any_skip_relocation, x86_64_linux: "72b0839c48f2202ebccc1a67c36c69a2da74df16812cae1ea1bfe9dd88f68e1d"
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