class Zim < Formula desc "Graphical text editor used to maintain a collection of wiki pages" homepage "https://zim-wiki.org/" url "https://github.com/jaap-karssenberg/zim-desktop-wiki/archive/0.72.0.tar.gz" sha256 "6d619613d6f5d25ddabd03a07629be0bfcd58bfeeb7314497dc04d1aeb7c6d67" head "https://github.com/jaap-karssenberg/zim-desktop-wiki.git" bottle do cellar :any_skip_relocation sha256 "d15dba72d0277b50719b88e945a0faae2704fbfffdad8c8d55dd589ab48e5c86" => :mojave sha256 "d15dba72d0277b50719b88e945a0faae2704fbfffdad8c8d55dd589ab48e5c86" => :high_sierra sha256 "47dd25d3ebafa28fb4620f2b015a1a7bd7e1f3e60078e5f73e000613daa26b07" => :sierra end depends_on "pkg-config" => :build depends_on "graphviz" depends_on "gtk+3" depends_on "pygobject3" depends_on "pygtk" depends_on "pygtksourceview" depends_on "python" resource "pyxdg" do url "https://files.pythonhosted.org/packages/47/6e/311d5f22e2b76381719b5d0c6e9dc39cd33999adae67db71d7279a6d70f4/pyxdg-0.26.tar.gz" sha256 "fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06" end def install ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python3.7/site-packages" resource("pyxdg").stage do system "python", *Language::Python.setup_install_args(libexec/"vendor") end ENV["XDG_DATA_DIRS"] = libexec/"share" ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python3.7/site-packages" system "python3", "./setup.py", "install", "--prefix=#{libexec}" bin.install Dir[libexec/"bin/*"] bin.env_script_all_files libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"], :XDG_DATA_DIRS => libexec/"share" pkgshare.install "zim" end test do ENV["LC_ALL"] = "en_US.UTF-8" ENV["LANG"] = "en_US.UTF-8" system "#{bin}/zim", "--version" end end