Merge pull request #107 from Tivoli/tivs/install-postgres-with-contrib

Updates postgres install with contrib and man pages
This commit is contained in:
Michał Siwek
2015-09-23 16:13:43 +02:00

View File

@@ -9,11 +9,11 @@ class Postgres < Package
def self.build
system "./configure"
system "make"
system "make world"
end
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install-world"
out = "#{CREW_DEST_DIR}/usr/local/pgsql/data"
system "mkdir", out
puts "------------------"