mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
35 lines
1.3 KiB
Ruby
35 lines
1.3 KiB
Ruby
cask "bootstrap-studio" do
|
|
arch arm: "arm64", intel: "x64"
|
|
|
|
version "6.5.1"
|
|
sha256 arm: "acf79154829a7558fa8c80588c41f9f76d3da1e86a9fab0a1bc496aec61c475e",
|
|
intel: "b13d62d09fad13507c306f53a0b430deab7b9c6b6cbd9c8e3faad837f7caffb0"
|
|
|
|
url "https://releases.bootstrapstudio.io/#{version}/Bootstrap%20Studio%20(#{arch}).dmg"
|
|
name "Bootstrap Studio"
|
|
desc "Design and prototype websites using the Bootstrap framework"
|
|
homepage "https://bootstrapstudio.io/"
|
|
|
|
livecheck do
|
|
url "https://bootstrapstudio.io/pages/releases/"
|
|
regex(/Version\s*(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Bootstrap Studio.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/bstudio",
|
|
"~/Library/Application Support/CrashReporter/Bootstrap Studio*",
|
|
"~/Library/Caches/bg.zine.bootstrapstudio",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/bg.zine.bootstrapstudio.sfl2",
|
|
"~/Library/Caches/bg.zine.bootstrapstudio.ShipIt",
|
|
"~/Library/Preferences/ByHost/bg.zine.bootstrapstudio.ShipIt.*",
|
|
"~/Library/Preferences/bg.zine.bootstrapstudio.helper.plist",
|
|
"~/Library/Preferences/bg.zine.bootstrapstudio.plist",
|
|
"~/Library/Saved Application State/bg.zine.bootstrapstudio.savedState",
|
|
]
|
|
end
|