blob: 06932977a8b58b6f0f7840712fcc8013c655161d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'
def install
fails_with_llvm
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-nls"
system "make install"
end
end
|