You've already forked homebrew-cask
mirror of
https://github.com/encounter/homebrew-cask.git
synced 2026-03-30 11:16:45 -07:00
27 lines
708 B
Ruby
27 lines
708 B
Ruby
cask "gitup" do
|
|
version "1.2"
|
|
sha256 :no_check
|
|
|
|
url "https://gitup-builds.s3.amazonaws.com/stable/GitUp.zip",
|
|
verified: "gitup-builds.s3.amazonaws.com/"
|
|
name "GitUp"
|
|
desc "Git interface focused on visual interaction"
|
|
homepage "https://gitup.co/"
|
|
|
|
livecheck do
|
|
url "https://github.com/git-up/GitUp/releases"
|
|
strategy :github_latest
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "GitUp.app"
|
|
binary "#{appdir}/GitUp.app/Contents/SharedSupport/gitup"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/co.gitup.mac.sfl*",
|
|
"~/Library/Caches/co.gitup.mac",
|
|
"~/Library/Preferences/co.gitup.mac.plist",
|
|
]
|
|
end
|