homebrew-cask/Casks/c/chrysalis.rb

28 lines
887 B
Ruby

cask "chrysalis" do
version "0.13.3"
sha256 "307c17836e901fb26bccfdbfad50744ea1b3c00536306c1dd06a63c430602f06"
url "https://github.com/keyboardio/Chrysalis/releases/download/v#{version}/Chrysalis-#{version}-universal.dmg"
name "Chrysalis"
desc "Graphical configurator for Kaleidoscope-powered keyboards"
homepage "https://github.com/keyboardio/Chrysalis"
# This uses a regex that specifically matches versions from release tag links
# for this repository only. A description for a previous release linked to a
# tag in a different repository, which led to an incorrect version match.
livecheck do
url :url
regex(/v?(\d+(?:\.\d+)+)/i)
strategy :github_latest
end
depends_on macos: ">= :high_sierra"
app "Chrysalis.app"
zap trash: [
"~/Library/Application Support/chrysalis",
"~/Library/Preferences/keyboardio.chrysalis.plist",
]
end