mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
cask "postgres-unofficial" do
|
|
version "2.6.8,11-12-13-14-15-16"
|
|
sha256 "3ff54a7b4bf5456c942a995beefbbf0b5ccfe035f5a0b9f0c19b3ab70b56dd5f"
|
|
|
|
url "https://github.com/PostgresApp/PostgresApp/releases/download/v#{version.csv.first}/Postgres-#{version.csv.first}-#{version.csv.second}.dmg",
|
|
verified: "github.com/PostgresApp/PostgresApp/"
|
|
name "Postgres"
|
|
desc "App wrapper for Postgres"
|
|
homepage "https://postgresapp.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
regex(/^Postgres[._-]v?(\d+(?:\.\d+)+)[._-](\d+(?:-\d+)+)\.dmg$/i)
|
|
strategy :github_latest do |json, regex|
|
|
json["assets"]&.map do |asset|
|
|
match = asset["name"]&.match(regex)
|
|
next if match.blank?
|
|
|
|
"#{match[1]},#{match[2]}"
|
|
end
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "Postgres.app"
|
|
|
|
uninstall launchctl: "com.postgresapp.Postgres#{version.major}LoginHelper",
|
|
quit: [
|
|
"com.postgresapp.Postgres#{version.major}",
|
|
"com.postgresapp.Postgres#{version.major}MenuHelper",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Postgres",
|
|
"~/Library/Caches/com.postgresapp.Postgres#{version.major}",
|
|
"~/Library/Cookies/com.postgresapp.Postgres#{version.major}.binarycookies",
|
|
"~/Library/Preferences/com.postgresapp.Postgres#{version.major}.plist",
|
|
]
|
|
end
|