mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
23 lines
790 B
Ruby
23 lines
790 B
Ruby
cask "retro-virtual-machine" do
|
|
version "2.1.11"
|
|
sha256 "6ec65f955e268276c215b44b2f76535be5eb49f58418659f377b20423d827510"
|
|
|
|
url "https://static.retrovm.org/release/#{version}/RetroVirtualMachine.#{version}.dmg",
|
|
verified: "static.retrovm.org/release/"
|
|
name "Retro Virtual Machine"
|
|
desc "ZX Spectrum and Amstrad CPC emulator"
|
|
homepage "https://www.retrovirtualmachine.org/"
|
|
|
|
livecheck do
|
|
url "https://www.retrovirtualmachine.org/download/"
|
|
regex(/RetroVirtualMachine[._-](\d+(?:\.\d+)+)\.dmg/i)
|
|
end
|
|
|
|
app "Retro Virtual Machine #{version.major_minor}.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Retro Virtual Machine v#{version.major_minor}.x",
|
|
"~/Library/Preferences/com.madeinalacant.RetroVirtualMachine#{version.major_minor}.plist",
|
|
]
|
|
end
|