homebrew-core/Formula/pv.rb
Justin Weiss 722bd359a6 Pipe Viewer formula
pv - Pipe Viewer - is a terminal-based tool for monitoring the
progress of data through a pipeline. It can be inserted into any
normal pipeline between two processes to give a visual indication of
how quickly data is passing through, how long it has taken, how near
to completion it is, and an estimate of how long it will be until
completion.

Signed-off-by: Max Howell <max@methylblue.com>
2009-09-11 17:42:53 +01:00

14 lines
388 B
Ruby

require 'brewkit'
# 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
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end