homebrew-core/Formula/pv.rb
2009-11-11 19:11:13 +00:00

16 lines
405 B
Ruby

require 'formula'
# TODO other names include Pipe Viewer
class Pv <Formula
@url='http://pipeviewer.googlecode.com/files/pv-1.1.4.tar.bz2'
@homepage='http://www.ivarch.com/programs/pv.shtml'
@md5='63033e090d61a040407bfd043aeb6d27'
def install
ENV.gcc_4_2
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end