diff options
| author | nibbles 2bits | 2012-11-18 10:58:21 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-11-18 11:23:44 -0800 |
| commit | f8918f8a4d93c8fc577537ab7023f9c1d926a0af (patch) | |
| tree | 32636c196d6818c010c777fe6ea43cba0a269a02 /Library | |
| parent | ef144d9fa0867ce8ae784f667924ac49e2f58142 (diff) | |
| download | homebrew-f8918f8a4d93c8fc577537ab7023f9c1d926a0af.tar.bz2 | |
pv 1.3.9
- Upgrade to version 1.3.9
- enable gettext
- Works with superenv
Closes #16132.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pv.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/pv.rb b/Library/Formula/pv.rb index e3934e569..ee1e3ad37 100644 --- a/Library/Formula/pv.rb +++ b/Library/Formula/pv.rb @@ -1,19 +1,20 @@ 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' - sha1 'bb921bca55347a1b7c6f74ce6b70cff0325499d7' + url 'http://www.ivarch.com/programs/sources/pv-1.3.9.tar.bz2' + sha1 '9ed32eb0c441f9699acd4091e096ca2f4bb6b5ea' + + depends_on 'gettext' fails_with :llvm do build 2334 end def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", "--prefix=#{prefix}", - "--mandir=#{man}", - "--disable-nls" + "--mandir=#{man}" system "make install" end end |
