mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
26 lines
715 B
Ruby
26 lines
715 B
Ruby
cask "ludwig" do
|
|
version "2.1.13"
|
|
sha256 "158004f8d373924e432f651a2d81aac11cfec26cb897d0c22d1bc1313a0197c3"
|
|
|
|
url "https://desktop.ludwig.guru/download/#{version}/osx_64"
|
|
name "ludwig"
|
|
desc "Sentence search engine app that helps you write better English"
|
|
homepage "https://ludwig.guru/"
|
|
|
|
livecheck do
|
|
url "https://desktop.ludwig.guru/download/latest/osx_64"
|
|
strategy :header_match
|
|
end
|
|
|
|
app "Ludwig.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Ludwig",
|
|
"~/Library/Caches/guru.ludwig",
|
|
"~/Library/Caches/guru.ludwig.ShipIt",
|
|
"~/Library/Logs/Ludwig",
|
|
"~/Library/Preferences/guru.ludwig.plist",
|
|
"~/Library/Saved Application State/guru.ludwig.savedState",
|
|
]
|
|
end
|