mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
862 B
Ruby
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
|