homebrew-core/Formula/zim.rb

62 lines
2.4 KiB
Ruby

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.1.tar.gz"
sha256 "ba02e418b4fb1d7847f96b49ada8c917c881a28bb5fb55dcdca54be7b3fd196a"
head "https://github.com/jaap-karssenberg/zim-desktop-wiki.git"
bottle do
cellar :any_skip_relocation
rebuild 1
sha256 "90a03a7c6398c3587bf32dc5d2d9a727f6a0acaa1d3cc2a89cb2e1865a56bffc" => :catalina
sha256 "7eb345f75ff5dd366000183deb4d7dc974f00de5ee19f6e82a3e5a4ef92990eb" => :mojave
sha256 "7eb345f75ff5dd366000183deb4d7dc974f00de5ee19f6e82a3e5a4ef92990eb" => :high_sierra
end
depends_on "pkg-config" => :build
depends_on "adwaita-icon-theme"
depends_on "graphviz"
depends_on "gtk+3"
depends_on "gtksourceview3"
depends_on "pygobject3"
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 => ["#{HOMEBREW_PREFIX}/share", libexec/"share"].join(":")
pkgshare.install "zim"
end
test do
ENV["LC_ALL"] = "en_US.UTF-8"
ENV["LANG"] = "en_US.UTF-8"
mkdir_p %w[Notes/Homebrew HTML]
# Equivalent of (except doesn't require user interaction):
# zim --plugin quicknote --notebook ./Notes --page Homebrew --basename Homebrew
# --text "[[https://brew.sh|Homebrew]]"
File.write(
"Notes/Homebrew/Homebrew.txt",
"Content-Type: text/x-zim-wiki\nWiki-Format: zim 0.4\n" \
"Creation-Date: 2020-03-02T07:17:51+02:00\n\n[[https://brew.sh|Homebrew]]",
)
system "#{bin}/zim", "--index", "./Notes"
system "#{bin}/zim", "--export", "-r", "-o", "HTML", "./Notes"
system "grep", '<a href="https://brew.sh".*Homebrew</a>', "HTML/Homebrew/Homebrew.html"
end
end