mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
658 B
Ruby
26 lines
658 B
Ruby
cask "josm" do
|
|
version "18822"
|
|
sha256 "3058966c453c0ba26fabdc2420a00d41ea89876ff20b7cb8d00367184978205d"
|
|
|
|
url "https://github.com/JOSM/josm/releases/download/#{version}-tested/JOSM-macOS-java17-#{version}.zip",
|
|
verified: "github.com/JOSM/josm/"
|
|
name "JOSM"
|
|
desc "Extensible editor for OpenStreetMap"
|
|
homepage "https://josm.openstreetmap.de/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/\D*?(\d+(?:\.\d+)*)/i)
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "JOSM.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/JOSM",
|
|
"~/Library/JOSM",
|
|
"~/Library/Preferences/JOSM",
|
|
"~/Library/Saved Application State/de.openstreetmap.josm.savedState",
|
|
]
|
|
end
|