mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
cask "minecraftpe" do
|
|
version "1.20.13.0"
|
|
sha256 "ca4a7de7302e8796a69ec41a93c973db34508e0559482e4d3465d2e0fbd1d7aa"
|
|
|
|
url "https://downloads.minecrafteduservices.com/retailbuilds/MacOS/Minecraft_Education_#{version}.dmg",
|
|
verified: "downloads.minecrafteduservices.com/"
|
|
name "Minecraft Education Edition"
|
|
desc "Educational version of Minecraft"
|
|
homepage "https://education.minecraft.net/"
|
|
|
|
livecheck do
|
|
url "https://aka.ms/meeclientmacos"
|
|
regex(/Minecraft[._-]Education[._-]?(\d+(?:[.-]\d+)+)\.dmg/i)
|
|
strategy :header_match
|
|
end
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "minecraftpe.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.microsoft.minecraftpe",
|
|
"~/Library/Application Support/minecraftpe",
|
|
"~/Library/Caches/com.microsoft.minecraftpe",
|
|
"~/Library/HTTPStorages/com.microsoft.minecraftpe",
|
|
"~/Library/HTTPStorages/com.microsoft.minecraftpe.binarycookies",
|
|
"~/Library/Preferences/com.microsoft.minecraftpe.plist",
|
|
"~/Library/Saved Application State/com.microsoft.minecraftpe.savedState",
|
|
"~/Library/WebKit/com.microsoft.minecraftpe",
|
|
]
|
|
end
|