homebrew-cask/Casks/pgadmin3.rb

21 lines
724 B
Ruby

cask :v1 => 'pgadmin3' do
# note: "3" is not a version number, but indicates a different vendor
version '1.20.0'
sha256 '0712106cca16240db9962214384874c108fe8397d0c418a79dfb3639f8f140da'
# postgresql.org is the official download host per the vendor homepage
url "https://ftp.postgresql.org/pub/pgadmin3/release/v#{version}/osx/pgadmin3-#{version}.dmg"
gpg "#{url}.sig",
:key_id => 'e0c4ceeb826b1fda4fb468e024adfaaf698f1519'
name 'pgAdmin'
homepage 'http://pgadmin.org'
license :oss
app 'pgAdmin3.app'
zap :delete => [
'~/Library/Preferences/pgadmin3 Preferences',
'~/Library/Saved Application State/org.postgresql.pgadmin.savedState'
]
end