mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-05-24 22:06:54 -06:00
23 lines
737 B
Ruby
23 lines
737 B
Ruby
cask "macpass-dev" do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url "https://github.com/MacPass/MacPass/releases/download/continuous/MacPass-continuous.zip",
|
|
verified: "github.com/MacPass/MacPass/"
|
|
name "MacPass"
|
|
desc "KeePass-client and password manager"
|
|
homepage "https://macpass.github.io/"
|
|
|
|
conflicts_with cask: "macpass"
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "MacPass.app"
|
|
|
|
zap delete: [
|
|
"~/Library/Application Support/MacPass",
|
|
"~/Library/Caches/com.hicknhacksoftware.MacPass",
|
|
"~/Library/Cookies/com.hicknhacksoftware.MacPass.binarycookies",
|
|
"~/Library/Preferences/com.hicknhacksoftware.MacPass.plist",
|
|
"~/Library/Saved Application State/com.hicknhacksoftware.MacPass.savedState",
|
|
]
|
|
end
|