mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
33 lines
1004 B
Ruby
33 lines
1004 B
Ruby
cask "caprine" do
|
|
arch arm: "-arm64"
|
|
|
|
version "2.59.1"
|
|
sha256 arm: "eec8b899e2e7119bb92b65edf37062ae1f993b043f55ced17102ba7a83aee29d",
|
|
intel: "58c4f8cab2e30d232c23f9456d8383bb7ff4c21705fbefb84a1a0285f3322df4"
|
|
|
|
url "https://github.com/sindresorhus/caprine/releases/download/v#{version}/Caprine-#{version}#{arch}.dmg"
|
|
name "Caprine"
|
|
desc "Elegant Facebook Messenger desktop app"
|
|
homepage "https://github.com/sindresorhus/caprine"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Caprine.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Caprine",
|
|
"~/Library/Caches/com.sindresorhus.caprine",
|
|
"~/Library/Caches/com.sindresorhus.caprine.ShipIt",
|
|
"~/Library/Logs/Caprine",
|
|
"~/Library/Preferences/com.sindresorhus.caprine.helper.plist",
|
|
"~/Library/Preferences/com.sindresorhus.caprine.plist",
|
|
"~/Library/Saved Application State/com.sindresorhus.caprine.savedState",
|
|
]
|
|
end
|