blob: 3583bba2c02c14baff704bd75dd8b1757399490e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Pv < Formula
url 'http://pipeviewer.googlecode.com/files/pv-1.2.0.tar.bz2'
homepage 'http://www.ivarch.com/programs/pv.shtml'
md5 '67aedf6dbcd068d5feeaa76156153f4f'
fails_with_llvm :build => 2334
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--disable-nls"
system "make install"
end
end
|