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.
22 lines
455 B
Ruby
22 lines
455 B
Ruby
cask "classicftp" do
|
|
version "4.03"
|
|
sha256 :no_check
|
|
|
|
url "https://www.nchsoftware.com/classic/classicmaci.zip"
|
|
name "ClassicFTP"
|
|
desc "FTP File Transfer Software"
|
|
homepage "https://www.nchsoftware.com/classic/index.html"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :extract_plist
|
|
end
|
|
|
|
app "ClassicFTP.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/ClassicFTP",
|
|
"~/Library/Preferences/com.nchsoftware.classicftp.plist",
|
|
]
|
|
end
|