mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
37 lines
932 B
Ruby
37 lines
932 B
Ruby
cask "gitfiend" do
|
|
version "0.44.3"
|
|
sha256 "ad06ff9c0247993a9ec9aa4bb93b880662097742072cd4ff1cc302b621e4cadc"
|
|
|
|
url "https://gitfiend.com/resources/GitFiend-#{version}.dmg"
|
|
name "GitFiend"
|
|
desc "Git client"
|
|
homepage "https://gitfiend.com/"
|
|
|
|
livecheck do
|
|
url "https://gitfiend.com/app-info"
|
|
strategy :json do |json|
|
|
json["version"]
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
|
|
app "GitFiend.app"
|
|
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
|
shimscript = "#{staged_path}/gitfiend.wrapper.sh"
|
|
binary shimscript, target: "gitfiend"
|
|
|
|
preflight do
|
|
File.write shimscript, <<~EOS
|
|
#!/bin/sh
|
|
exec '#{appdir}/GitFiend.app/Contents/MacOS/GitFiend' "$@"
|
|
EOS
|
|
end
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/GitFiend",
|
|
"~/Library/Preferences/com.tobysuggate.gitfiend.plist",
|
|
"~/Library/Saved Application State/com.tobysuggate.gitfiend.savedState",
|
|
]
|
|
end
|