mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
20 lines
606 B
Ruby
20 lines
606 B
Ruby
cask "macsvg" do
|
|
version "1.2.0"
|
|
sha256 "c25105533150f5f9d28e6b08ac20f346f49999f70af55fa0a3aa4d6093aa37ec"
|
|
|
|
url "https://github.com/dsward2/macSVG/releases/download/v#{version}/macSVG-v#{version.chomp(".0")}.zip",
|
|
verified: "github.com/dsward2/macSVG/"
|
|
name "macSVG"
|
|
desc "App for designing HTML5 Scalable Vector Graphics"
|
|
homepage "https://macsvg.org/"
|
|
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "macSVG_v#{version.chomp(".0").dots_to_underscores}/macSVG.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.arkphone.macsvg",
|
|
"~/Library/Containers/com.arkphone.macsvg",
|
|
]
|
|
end
|