mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
616 B
Ruby
25 lines
616 B
Ruby
cask "xca" do
|
|
version "2.5.0"
|
|
sha256 "0042758b99d09aa254d721e1e94fd97adfc186727891093e9eeec4d18e9d734f"
|
|
|
|
url "https://github.com/chris2511/xca/releases/download/RELEASE.#{version}/xca-#{version}-Darwin.dmg",
|
|
verified: "github.com/chris2511/xca/"
|
|
name "XCA"
|
|
desc "X Certificate and Key management"
|
|
homepage "https://hohnstaedt.de/xca/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^RELEASE\.(\d+(?:\.\d+)*)$/i)
|
|
end
|
|
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "xca.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/xca",
|
|
"~/Library/Saved Application State/de.hohnstaedt.xca.savedState",
|
|
]
|
|
end
|