22 lines
507 B
Ruby
22 lines
507 B
Ruby
cask "gaphor" do
|
|
version "2.25.1"
|
|
sha256 "57e04d5aae8185d81e22f94210821e3fa2f16fa50103d9d04890cc5c04e28bd6"
|
|
|
|
url "https://github.com/gaphor/gaphor/releases/download/#{version}/Gaphor-#{version}.dmg",
|
|
verified: "github.com/gaphor/gaphor/"
|
|
name "Gaphor"
|
|
desc "UML/SysML modelling tool"
|
|
homepage "https://gaphor.org/"
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Gaphor.app"
|
|
|
|
uninstall quit: "Gaphor-#{version}"
|
|
|
|
zap trash: [
|
|
"~/.cache/gaphor",
|
|
"~/.local/share/gaphor",
|
|
]
|
|
end
|