homebrew-cask/Casks/quarto.rb

24 lines
620 B
Ruby

cask "quarto" do
version "1.2.335"
sha256 "445ad7fdfdd8e4c3967423fc76bd83dc55574424084014e7828c08b5d2bf612f"
url "https://github.com/quarto-dev/quarto-cli/releases/download/v#{version}/quarto-#{version}-macos.pkg",
verified: "github.com/quarto-dev/quarto-cli/"
name "quarto"
desc "Scientific and technical publishing system built on Pandoc"
homepage "https://www.quarto.org/"
livecheck do
url :url
strategy :github_latest
end
depends_on macos: ">= :el_capitan"
pkg "quarto-#{version}-macos.pkg"
uninstall pkgutil: "org.rstudio.quarto"
zap trash: "~/Library/Caches/quarto"
end