aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pv.rb
blob: e096e34ed29c4ccd1d928ab80d28727830dd3301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

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'
  
  aka 'pipeviewer'

  def install
    ENV.gcc_4_2

    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--disable-nls"
    system "make install"
  end
end