Skip to content
Snippets Groups Projects
Commit 0740c576 authored by Todd Gamblin's avatar Todd Gamblin
Browse files

Package for postgresql.

parent 0bba101f
No related branches found
No related tags found
No related merge requests found
from spack import *
class Postgresql(Package):
"""PostgreSQL is a powerful, open source object-relational
database system. It has more than 15 years of active
development and a proven architecture that has earned it a
strong reputation for reliability, data integrity, and
correctness."""
homepage = "http://www.postgresql.org/"
url = "http://ftp.postgresql.org/pub/source/v9.3.4/postgresql-9.3.4.tar.bz2"
version('9.3.4', 'd0a41f54c377b2d2fab4a003b0dac762')
def install(self, spec, prefix):
# FIXME: Modify the configure line to suit your build system here.
configure("--prefix=%s" % prefix)
# FIXME: Add logic to build and install here
make()
make("install")
def dotkit(self, dk):
dk.setenv('PGDATA', "%s/data" %self.prefix)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment