mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
24 lines
620 B
Ruby
24 lines
620 B
Ruby
cask "quarto" do
|
|
version "1.3.450"
|
|
sha256 "6d34d53f2d5e1b34f7aabdd95d620433251e521b734244066d6bc2eb45269879"
|
|
|
|
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
|