You've already forked homebrew-cask
mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-04-22 15:25:17 -07:00
aa461148bb
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
20 lines
727 B
Ruby
20 lines
727 B
Ruby
cask "xcodeclangformat" do
|
|
version "1.2.1"
|
|
sha256 "efc9e926db308977d9ad1ce39925b5c3270eb05aec97a4ae988250d31619d97c"
|
|
|
|
url "https://github.com/mapbox/XcodeClangFormat/releases/download/v#{version}/XcodeClangFormat.zip"
|
|
name "XcodeClangFormat"
|
|
desc "Format code in Xcode with clang-format"
|
|
homepage "https://github.com/mapbox/XcodeClangFormat"
|
|
|
|
app "XcodeClangFormat.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.mapbox.XcodeClangFormat",
|
|
"~/Library/Application Scripts/com.mapbox.XcodeClangFormat.clang-format",
|
|
"~/Library/Containers/com.mapbox.XcodeClangFormat",
|
|
"~/Library/Containers/com.mapbox.XcodeClangFormat.clang-format",
|
|
"~/Library/Group Containers/XcodeClangFormat",
|
|
]
|
|
end
|