homebrew-cask/Casks/l/launchbar.rb

27 lines
758 B
Ruby

cask "launchbar" do
version "6.18.5"
sha256 "b8ef6c5c8337225be74b541a3b79ed0dcd16b00c2b9a7323581af41cad2c5710"
url "https://www.obdev.at/downloads/launchbar/LaunchBar-#{version}.dmg"
name "LaunchBar"
desc "Productivity tool"
homepage "https://www.obdev.at/products/launchbar/index.html"
livecheck do
url "https://www.obdev.at/products/launchbar/download.html"
regex(%r{href=.*?/LaunchBar-(\d+(?:\.\d+)+)\.dmg}i)
end
auto_updates true
depends_on macos: ">= :mojave"
app "LaunchBar.app"
zap trash: [
"~/Library/Application Support/LaunchBar",
"~/Library/Caches/at.obdev.LaunchBar",
"~/Library/Preferences/at.obdev.LaunchBar.plist",
"~/Library/Saved Application State/at.obdev.LaunchBar.savedState",
]
end