mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
22 lines
632 B
Ruby
22 lines
632 B
Ruby
cask "rio" do
|
|
version "0.0.29"
|
|
sha256 "084e96f74aab8ae39d9b77e3b90055573f8ecd74fba27b5a596ccc7a877ddeb3"
|
|
|
|
url "https://github.com/raphamorim/rio/releases/download/v#{version}/Rio-v#{version}.dmg"
|
|
name "Rio"
|
|
desc "Hardware-accelerated GPU terminal emulator"
|
|
homepage "https://github.com/raphamorim/rio/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Rio.app"
|
|
binary "Rio.app/Contents/MacOS/rio"
|
|
binary "Rio.app/Contents/Resources/72/rio",
|
|
target: "#{ENV.fetch("TERMINFO", "~/.terminfo")}/72/rio"
|
|
|
|
zap trash: "~/Library/Saved Application State/com.raphaelamorim.rio.savedState"
|
|
end
|