mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
628 B
Ruby
25 lines
628 B
Ruby
cask "bdash" do
|
|
version "1.16.2"
|
|
sha256 "3622133b950122ca0135a218048920fbf914ad394922bc53b55d4ef97240f508"
|
|
|
|
url "https://github.com/bdash-app/bdash/releases/download/v#{version}/Bdash-#{version}-mac.zip"
|
|
name "Bdash"
|
|
desc "Simple SQL Client for lightweight data analysis"
|
|
homepage "https://github.com/bdash-app/bdash"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
app "Bdash.app"
|
|
|
|
zap trash: [
|
|
"~/.bdash",
|
|
"~/Library/Application Support/Bdash",
|
|
"~/Library/Logs/Bdash",
|
|
"~/Library/Preferences/io.bdash.plist",
|
|
"~/Library/Saved Application State/io.bdash.savedState",
|
|
]
|
|
end
|