mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
607 B
Ruby
25 lines
607 B
Ruby
cask "bitwig-studio" do
|
|
version "5.0.11"
|
|
sha256 "a1864b93f906858dcbc108f1bd805a4d8426710520d451f4656f02b6e3b6e186"
|
|
|
|
url "https://downloads.bitwig.com/stable/#{version}/Bitwig%20Studio%20#{version}.dmg"
|
|
name "Bitwig Studio"
|
|
desc "Digital audio workstation"
|
|
homepage "https://www.bitwig.com/"
|
|
|
|
livecheck do
|
|
url "https://www.bitwig.com/download/"
|
|
regex(/Bitwig\s*Studio\s*v?(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "Bitwig Studio.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Bitwig",
|
|
"~/Library/Caches/Bitwig",
|
|
"~/Library/Logs/Bitwig",
|
|
]
|
|
end
|