homebrew-cask/Casks/postgres.rb

29 lines
1.1 KiB
Ruby

cask 'postgres' do
version '2.3.3e'
sha256 '14b0700ea4091e89c8913ce41cbd92d1d21b86b292990aa08e3e554dea7e345a'
# github.com/PostgresApp/PostgresApp/ was verified as official when first introduced to the cask
url "https://github.com/PostgresApp/PostgresApp/releases/download/v#{version}/Postgres-#{version}-10-11-12.dmg"
appcast 'https://github.com/PostgresApp/PostgresApp/releases.atom'
name 'Postgres'
homepage 'https://postgresapp.com/'
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