aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pv.rb
blob: 6116ee42b0e3a64b47b6d0d9b76de6e26e083695 (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://www.ivarch.com/programs/sources/pv-1.2.0.tar.bz2'
  homepage 'http://www.ivarch.com/programs/pv.shtml'
  md5 '67aedf6dbcd068d5feeaa76156153f4f'

  fails_with :llvm do
    build 2334
  end

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