Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Postgress.app #2194

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Casks/postgres.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class Postgres < Cask
url 'https://github.com/PostgresApp/PostgresApp/releases/download/9.3.1.0-alpha1/Postgres93.zip'
homepage 'http://postgresapp.com/'
version '9.3.1.0'
sha1 'fa2c504fd791564484995226dd339b5b9eaa2519'
link 'Postgres93.app'

def caveats
<<-EOS.undent
To avoid linking issues with bundled libraries, Postgres must be located exactly at the following path:
/Applications/Postgres93.app

To satisfy this requirement, run `brew cask` like this:
brew cask install postgres --appdir=/Applications

EOS
end
end