2011-07-21 09:56:21 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Skytools < Formula
|
|
|
|
homepage 'http://pgfoundry.org/projects/skytools/'
|
2013-01-04 06:13:59 +00:00
|
|
|
url 'http://pgfoundry.org/frs/download.php/3397/skytools-3.1.3.tar.gz'
|
2013-01-03 21:56:56 +00:00
|
|
|
sha1 'c94eb1d86f9b33e49b929e02cefda95150e2fdcf'
|
2011-07-21 09:56:21 +00:00
|
|
|
|
2012-11-16 08:17:09 +00:00
|
|
|
# Works only with homebrew postgres: https://github.com/mxcl/homebrew/issues/16024
|
|
|
|
depends_on 'postgresql'
|
2011-07-21 09:56:21 +00:00
|
|
|
|
2012-03-01 04:36:21 +00:00
|
|
|
def install
|
2011-07-21 09:56:21 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|