mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
23 lines
750 B
Ruby
23 lines
750 B
Ruby
cask "syncthing" do
|
|
version "1.26.1-1"
|
|
sha256 "52dae39b09f95501af40639f5aff518a2d68bf60fc71f004e4b3e5eaf103b160"
|
|
|
|
url "https://github.com/syncthing/syncthing-macos/releases/download/v#{version}/Syncthing-#{version}.dmg",
|
|
verified: "github.com/syncthing/syncthing-macos/"
|
|
name "Syncthing"
|
|
desc "Real time file synchronization software"
|
|
homepage "https://syncthing.net/"
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Syncthing.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Syncthing-macOS",
|
|
"~/Library/Caches/com.github.xor-gate.syncthing-macosx",
|
|
"~/Library/Cookies/com.github.xor-gate.syncthing-macosx.binarycookies",
|
|
"~/Library/Preferences/com.github.xor-gate.syncthing-macosx.plist",
|
|
]
|
|
end
|