blob: f7b89c74c7b9b8c3f7844f4681dcee4675989573 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  | 
require 'formula'
class Pv < Formula
  homepage 'http://www.ivarch.com/programs/pv.shtml'
  url 'http://www.ivarch.com/programs/sources/pv-1.5.3.tar.bz2'
  sha1 '8cb04ca5c2318e4da0dc88f87f16cea6e1901bef'
  bottle do
    sha1 "e990208b2865d65af9036ba5733f4e6be9ce040a" => :mavericks
    sha1 "ca81f3114ba63c60a4227caece426a0f433a85f6" => :mountain_lion
    sha1 "b6c2ac9694c5511ea01be56570ded954aca4d645" => :lion
  end
  depends_on 'gettext'
  fails_with :llvm do
    build 2334
  end
  def install
    system "./configure", "--disable-debug",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make install"
  end
end
  |