homebrew-core/Formula/pg_top.rb

16 lines
414 B
Ruby
Raw Normal View History

require 'formula'
class PgTop < Formula
homepage 'http://ptop.projects.postgresql.org/'
2012-03-03 23:50:27 +00:00
url 'http://pgfoundry.org/frs/download.php/1781/pg_top-3.6.2.tar.gz'
sha1 'c165a5b09ab961bf98892db94b307e31ac0cf832'
depends_on :postgresql
2012-03-01 04:36:21 +00:00
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end