Files
homebrew-cask/Casks/m/mini-program-studio.rb

36 lines
1.2 KiB
Ruby

cask "mini-program-studio" do
arch arm: "-arm64", intel: "-x64"
on_arm do
version "3.8.4"
sha256 "ec3b672e829995315cef8b2b513d6547199babb557de1df65715fe6588a8a8f1"
end
on_intel do
version "3.8.4"
sha256 "58849a207da8d2ab02cffbe0490e934958c696fa6671870db98835a1f48db3f5"
end
url "https://alipay-miniapp-public.oss-cn-hangzhou.aliyuncs.com/mfupload/MiniProgramStudio-#{version}#{arch}.dmg",
verified: "alipay-miniapp-public.oss-cn-hangzhou.aliyuncs.com/mfupload/"
name "Mini Program Studio"
name "小程序开发者工具"
desc "IDE for the development of Alipay applets"
homepage "https://opendocs.alipay.com/mini/ide"
# The download page (https://opendocs.alipay.com/mini/ide/download) is
# rendered using JavaScript. The URL below returns JSON data that contains
# the HTML for the release information, so we can match within that.
livecheck do
url "https://opendocs.alipay.com/api/content/006l6m"
regex(/MiniProgramStudio[._-](\d+(?:\.\d+)*)/i)
end
app "小程序开发者工具.app"
zap trash: [
"~/Library/Application Support/小程序开发者工具",
"~/Library/Preferences/com.ant.miniprogram.plist",
"~/Library/Saved Application State/com.ant.miniprogram.savedState",
]
end