Files
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

26 lines
859 B
Ruby

cask "cr" do
version "3.0.56,10"
sha256 "0b6ba965635e9f9af745421b2579c8c14d8e3931a77ebbb1afc427cd537c18f3"
url "https://downloads.sourceforge.net/crengine/cr#{version.csv.first}-#{version.csv.second}.dmg"
name "Cool Reader"
desc "XML/CSS based eBook reader"
homepage "https://sourceforge.net/projects/crengine/"
livecheck do
url "https://sourceforge.net/projects/crengine/rss?path=/CoolReader#{version.major}/cr#{version.major}-#{version.csv.first}"
regex(%r{url=.*?/cr(\d+(?:\.\d+)+)-(\d+)\.dmg}i)
strategy :page_match do |page, regex|
page.scan(regex).map { |match| "#{match[0]},#{match[1]}" }
end
end
app "cr#{version.major}.app"
zap trash: [
"~/.cr#{version.major}",
"~/Library/Saved Application State/org.coolreader.cr#{version.major}.savedState",
"/Applications/cr#{version.major}.ini",
]
end