diff options
| author | Jack Nagel | 2013-11-27 14:00:33 -0600 | 
|---|---|---|
| committer | Jack Nagel | 2013-11-27 14:00:33 -0600 | 
| commit | a267a3ece465d9fc41a0ec6250fe7bbf1a6050e3 (patch) | |
| tree | 80fa07320e908cb2fb20eb359090d12ca4358da7 | |
| parent | 768c23de85a5d63e0c47b7840954ef1e358e754c (diff) | |
| download | homebrew-a267a3ece465d9fc41a0ec6250fe7bbf1a6050e3.tar.bz2 | |
postgresql: fix attribute order
| -rw-r--r-- | Library/Formula/postgresql.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb index 30df4f20e..ad773fa98 100644 --- a/Library/Formula/postgresql.rb +++ b/Library/Formula/postgresql.rb @@ -3,14 +3,14 @@ require 'formula'  class Postgresql < Formula    homepage 'http://www.postgresql.org/'    url 'http://ftp.postgresql.org/pub/source/v9.3.1/postgresql-9.3.1.tar.bz2' +  sha256 '8ea4a7a92a6f5a79359b02e683ace335c5eb45dffe7f8a681a9ce82470a8a0b8' +    bottle do      sha1 '11a69f847f44c2f1e3d8be884350d9f6a723f454' => :mavericks      sha1 '936b14d5b2006e16cfb5ec9d58577b24cebc04c4' => :mountain_lion      sha1 '1fa00b15402e5928299a766db0aca3c85d70fef7' => :lion    end -  sha256 '8ea4a7a92a6f5a79359b02e683ace335c5eb45dffe7f8a681a9ce82470a8a0b8' -    option '32-bit'    option 'no-perl', 'Build without Perl support'    option 'no-tcl', 'Build without Tcl support'  | 
