mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-05-24 22:06:54 -06:00
21 lines
486 B
Ruby
21 lines
486 B
Ruby
cask "dolphin-dev" do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url "https://dolphin-emu.org/download/list/master/1/" do |page|
|
|
page[/href="([^"]+\.dmg)"/, 1]
|
|
end
|
|
name "Dolphin Dev"
|
|
desc "Emulator to play GameCube and Wii games"
|
|
homepage "https://dolphin-emu.org/"
|
|
|
|
conflicts_with cask: "dolphin"
|
|
|
|
app "Dolphin.app"
|
|
app "Dolphin Updater.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Dolphin",
|
|
"~/Library/Preferences/org.dolphin-emu.dolphin.plist",
|
|
]
|
|
end
|