blob: c0e02a954436fa3cc35b779de7e3a32162b9ad59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
require 'brewkit'
class Postgresql <Formula
@url='http://wwwmaster.postgresql.org/redir/198/h/source/v8.4.0/postgresql-8.4.0.tar.bz2'
@homepage='http://www.postgresql.org/'
@md5='1f172d5f60326e972837f58fa5acd130'
def install
configure_args = [
"--with-bonjour",
"--with-python",
"--with-perl",
"--with-gssapi",
"--with-krb5",
"--with-openssl",
"--with-libxml",
"--with-libxslt",
"--prefix=#{prefix}",
"--disable-debug",
"--disable-dependency-tracking"
]
system "./configure", *configure_args
system "make install"
end
def caveats
puts <<-EOS
==============================================================
Suggested next steps:
* Create a user for postgresql (we'll name it "postgres").
* Create a databse:
$ sudo mkdir -p /var/db/postgresql/defaultdb
$ sudo chown postgres /var/db/postgresql/defaultdb
$ sudo su postgres -c '/usr/local/bin/initdb -D /var/db/postgresql/defaultdb'
$ sudo touch /var/log/postgres.log
$ sudo chown postgres /var/log/postgres.log
Starting:
$ sudo su postgres -c "/usr/local/bin/pg_ctl -D /var/db/postgresql/defaultdb start -l /var/log/postgres.log"
Stopping:
$ sudo su postgres -c "/usr/local/bin/pg_ctl -D /var/db/postgresql/defaultdb stop -s -m fast"
Google around for org.postgresql.plist if you want launchd support.
==============================================================
EOS
end
end
|