class Pymol < Formula include Language::Python::Virtualenv desc "Molecular visualization system" homepage "https://pymol.org/" url "https://github.com/schrodinger/pymol-open-source/archive/v2.5.0.tar.gz" sha256 "aa828bf5719bd9a14510118a93182a6e0cadc03a574ba1e327e1e9780a0e80b3" license :cannot_represent head "https://github.com/schrodinger/pymol-open-source.git", branch: "master" bottle do rebuild 1 sha256 cellar: :any, arm64_ventura: "83349892fd62c0e7f4779f518466ac427a3a1c8c94942d1d5c6cd28dd36dca83" sha256 cellar: :any, arm64_monterey: "dca9c78b36701af74a6c3d0809e7c1e56342d2c71ee1c9c65426256ad7964dc2" sha256 cellar: :any, arm64_big_sur: "65d1a74e957aae8f1b02dd4706d332a0b53305b065053df3ece0dc136a66d790" sha256 cellar: :any, ventura: "fc1a8e0a998879a07f1e04f7b045766d993728e9ff9d11debd4ff849879ccde0" sha256 cellar: :any, monterey: "28467563c8d033cea9c34bb660d439342d08bf20fe1caf8e8bf372cf28e0679f" sha256 cellar: :any, big_sur: "28d5d457a0f29a105752da1d9fbdeec8ce17d00624d5d3ecedd2fe13fc4bfe06" sha256 cellar: :any, catalina: "18d79ec5dcb396fcc9cbc7b9c3e877b4d00ee43ac35e265a2a0fcadf6e03fc20" sha256 cellar: :any_skip_relocation, x86_64_linux: "a891505c17ae5a8e97512a4096b9bd520fd9d0c6dce3ab8c935d5dff883a287e" end depends_on "cmake" => :build depends_on "glm" => :build depends_on "msgpack-cxx" => :build depends_on "sip" => :build depends_on "freetype" depends_on "glew" depends_on "libpng" depends_on "netcdf" depends_on "numpy" depends_on "pyqt@5" depends_on "python@3.11" uses_from_macos "libxml2" on_linux do depends_on "freeglut" end resource "mmtf-cpp" do url "https://github.com/rcsb/mmtf-cpp/archive/refs/tags/v1.0.0.tar.gz" sha256 "881f69c4bb56605fa63fd5ca50842facc4947f686cbf678ad04930674d714f40" end resource "msgpack" do url "https://files.pythonhosted.org/packages/61/3c/2206f39880d38ca7ad8ac1b28d2d5ca81632d163b2d68ef90e46409ca057/msgpack-1.0.3.tar.gz" sha256 "51fdc7fb93615286428ee7758cecc2f374d5ff363bdd884c7ea622a7a327a81e" end resource "mmtf-python" do url "https://files.pythonhosted.org/packages/13/ea/c6a302ccdfdcc1ab200bd2b7561e574329055d2974b1fb7939a7aa374da3/mmtf-python-1.1.2.tar.gz" sha256 "a5caa7fcd2c1eaa16638b5b1da2d3276cbd3ed3513f0c2322957912003b6a8df" end resource "Pmw" do url "https://github.com/schrodinger/pmw-patched/archive/8bedfc8747e7757c1048bc5e11899d1163717a43.tar.gz" sha256 "3a59e6d33857733d0a8ff0c968140b8728f8e27aaa51306160ae6ab13cea26d3" end def python3 which("python3.11") end def install site_packages = Language::Python.site_packages(python3) ENV.prepend_path "PYTHONPATH", Formula["numpy"].opt_prefix/site_packages resource("mmtf-cpp").stage do system "cmake", "-S", ".", "-B", "build", *std_cmake_args(install_prefix: buildpath/"mmtf") system "cmake", "--build", "build" system "cmake", "--install", "build" end # install other resources resources.each do |r| next if r.name == "mmtf-cpp" r.stage do system python3, *Language::Python.setup_install_args(libexec, python3) end end if OS.linux? # Fixes "libxml/xmlwriter.h not found" on Linux ENV.append "LDFLAGS", "-L#{Formula["libxml2"].opt_lib}" ENV.append "CPPFLAGS", "-I#{Formula["libxml2"].opt_include}/libxml2" end # CPPFLAGS freetype2 required. ENV.append "CPPFLAGS", "-I#{Formula["freetype"].opt_include}/freetype2" # Point to vendored mmtf headers. ENV.append "CPPFLAGS", "-I#{buildpath}/mmtf/include" args = %W[ --install-scripts=#{libexec}/bin --install-lib=#{libexec/site_packages} --glut --use-msgpackc=c++11 ] system python3, "setup.py", "install", *args (prefix/site_packages/"homebrew-pymol.pth").write libexec/site_packages bin.install libexec/"bin/pymol" end def caveats "To generate movies, run `brew install ffmpeg`." end test do (testpath/"test.py").write <<~EOS from pymol import cmd cmd.fragment('ala') cmd.zoom() cmd.png("test.png", 200, 200) EOS system "#{bin}/pymol", "-cq", testpath/"test.py" assert_predicate testpath/"test.png", :exist?, "Amino acid image should exist" system python3, "-c", "import pymol" end end