Files
homebrew-cask/Casks/s/simplemind.rb
2023-09-30 21:45:24 +08:00

28 lines
862 B
Ruby

cask "simplemind" do
version "2.2.1,b2897"
sha256 "759b5c820723b9409b813b23d946fdda78559572705dedff51eb0630555ed91c"
url "https://simpleapps.eu/simplemind/SM2Mac_G7Ynr4BfJYzhbHtCCTr/SimpleMindMacOS#{version.csv.first.no_dots}#{version.csv.second}.dmg"
name "SimpleMind"
desc "Cross-platform mind mapping tool"
homepage "https://simpleapps.eu/"
livecheck do
url "https://simpleapps.eu/download/full-edition/simplemind-pro-mac/"
regex(%r{<b>Version: ([\d.]+) ([a-zA-Z0-9]+)</b>}i)
strategy :page_match do |page, regex|
page.scan(regex).map { |match| "#{match[0]},#{match[1]}" }
end
end
auto_updates true
depends_on macos: ">= :high_sierra"
app "SimpleMind Pro.app"
zap trash: [
"~/Library/Caches/com.modelmakertools.simplemindosx",
"~/Library/Preferences/com.modelmakertools.simplemindosx.plist",
]
end