mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
37 lines
1.7 KiB
Ruby
37 lines
1.7 KiB
Ruby
cask "bluestacks" do
|
|
version "10.4.0.6907,f1d20c10cba982dc3ee4b6d975380943"
|
|
sha256 "b3c5220119bbd29bfcd9f7f3eea4b1054e9cbb7ca8be134b3647aebf64210c00"
|
|
|
|
url "https://mac-cdn.bluestacks.com/public/app-player/mac/nxt_mac/#{version.csv.first}/#{version.csv.second}/md5/x64/BlueStacks_X_#{version.csv.first}.dmg"
|
|
name "BlueStacks"
|
|
desc "Mobile gaming platform"
|
|
homepage "https://www.bluestacks.com/"
|
|
|
|
livecheck do
|
|
url "https://cloud.bluestacks.com/api/getdownloadnow?platform=mac&mac_version=#{MacOS.full_version}"
|
|
regex(%r{/(\d+(?:\.\d+)*)/([^/]+)/})
|
|
strategy :header_match do |headers, regex|
|
|
headers["location"].scan(regex).map { |match| "#{match[0]},#{match[1]}" }
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "BlueStacks X.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.bluestacks.bluestacks.sfl*",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.bluestacks.bluestacks-support-tool.sfl*",
|
|
"~/Library/BlueStacks",
|
|
"~/Library/Caches/com.bluestacks.BlueStacks",
|
|
"~/Library/Caches/com.bluestacks.BlueStacks-Support-Tool",
|
|
"~/Library/Caches/KSCrashReports/BlueStacks",
|
|
"~/Library/Logs/BlueStacks",
|
|
"~/Library/Preferences/com.BlueStacks.AppPlayer.DiagnosticTimestamp.txt",
|
|
"~/Library/Preferences/com.BlueStacks.AppPlayer.plist",
|
|
"~/Library/Preferences/com.BlueStacks.AppPlayer.SavedFrame.plist",
|
|
"~/Library/Preferences/com.bluestacks.BlueStacks.plist",
|
|
],
|
|
rmdir: "~/Library/Caches/KSCrashReports"
|
|
end
|