homebrew-cask/Casks/pandoc.rb

21 lines
731 B
Ruby

cask :v1 => 'pandoc' do
version '1.14.0.1'
sha256 'b3de12acc748fc943abb3ab2a14aba13e69460c4df38f8d3316cbadd5bd423df'
# github.com is the official download host per the vendor homepage
url "https://github.com/jgm/pandoc/releases/download/#{version}/pandoc-#{version}-osx.pkg"
appcast 'https://github.com/jgm/pandoc/releases.atom'
name 'Pandoc'
homepage 'http://johnmacfarlane.net/pandoc'
license :gpl
pkg "pandoc-#{version}-osx.pkg"
uninstall :pkgutil => 'net.johnmacfarlane.pandoc'
caveats <<-EOS.undent
Note that homebrew also provides a compiled pandoc Formula that links its
binary to /usr/local/bin/pandoc. It's not recommended to install both the
Cask and the Formula of Pandoc.
EOS
end