mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
26 lines
794 B
Ruby
26 lines
794 B
Ruby
cask "flying-carpet" do
|
|
version "7.1"
|
|
sha256 "f9c3a2ee3328ef92688c51f84e5f6b2495fd8497626ade634b2359becc467bf0"
|
|
|
|
url "https://github.com/spieglt/FlyingCarpet/releases/download/v#{version}/macOS_FlyingCarpet_#{version}.0_universal.dmg"
|
|
name "Flying Carpet"
|
|
desc "File transfer over ad-hoc wifi"
|
|
homepage "https://github.com/spieglt/flyingcarpet"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "FlyingCarpet.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/dev.spiegl",
|
|
"~/Library/Preferences/com.yourcompany.flyingcarpet.plist",
|
|
"~/Library/Preferences/dev.spiegl.plist",
|
|
"~/Library/Saved Application State/com.yourcompany.flyingcarpet.savedState",
|
|
"~/Library/Saved Application State/dev.spiegl.savedState",
|
|
"~/Library/WebKit/dev.spiegl",
|
|
]
|
|
end
|