mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
998 B
Ruby
30 lines
998 B
Ruby
cask "devpod" do
|
|
arch arm: "aarch64", intel: "x64"
|
|
|
|
version "0.5.2"
|
|
sha256 arm: "fbad0db03937b386427d19a21105f6e8cd02383ad6f45db04166411ce92a3d9e",
|
|
intel: "aa138aefa66fd357088bc89818c9b5ce3981be5f327fda5e7b5db9f593bb949a"
|
|
|
|
url "https://github.com/loft-sh/devpod/releases/download/v#{version}/DevPod_macos_#{arch}.dmg",
|
|
verified: "github.com/loft-sh/devpod/"
|
|
name "DevPod"
|
|
desc "UI to create reproducible developer environments based on a devcontainer.json"
|
|
homepage "https://devpod.sh/"
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "DevPod.app"
|
|
binary "#{appdir}/DevPod.app/Contents/MacOS/devpod-cli", target: "devpod"
|
|
|
|
zap trash: [
|
|
"~/.devpod",
|
|
"~/Library/Application Support/sh.loft.devpod",
|
|
"~/Library/Caches/sh.loft.devpod",
|
|
"~/Library/Logs/sh.loft.devpod",
|
|
"~/Library/Preferences/sh.loft.devpod.plist",
|
|
"~/Library/Saved Application State/sh.loft.devpod.savedState",
|
|
"~/Library/WebKit/sh.loft.devpod",
|
|
]
|
|
end
|