aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorSimon Leinen2014-04-24 00:22:50 +0200
committerAdam Vandenberg2014-04-26 17:44:54 -0700
commitdf8013785c6e2e607d1f9bc1592e2166a0a514c2 (patch)
tree2ab8999daf077c9e38dec4d32631dbf5edbc0dfa /Library
parenteb1a567eb6035f25c83b17f2a1322e3d87c924bd (diff)
downloadhomebrew-df8013785c6e2e607d1f9bc1592e2166a0a514c2.tar.bz2
httping 2.3.4
Closes #28653. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/httping.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/httping.rb b/Library/Formula/httping.rb
index 569658184..5bebd34ba 100644
--- a/Library/Formula/httping.rb
+++ b/Library/Formula/httping.rb
@@ -2,13 +2,15 @@ require 'formula'
class Httping < Formula
homepage 'http://www.vanheusden.com/httping/'
- url 'http://www.vanheusden.com/httping/httping-2.3.3.tgz'
- sha1 '6b9e77039346388e2b02dbb1d60f7422e7133488'
+ url 'http://www.vanheusden.com/httping/httping-2.3.4.tgz'
+ sha1 '5306d9b56ea89f7c39ee4729c2bbb6d0d867f310'
depends_on 'gettext'
depends_on 'fftw' => :optional
def install
+ # Reported upstream, see: https://github.com/Homebrew/homebrew/pull/28653
+ inreplace %w{configure Makefile}, "ncursesw", "ncurses"
ENV.append "LDFLAGS", "-lintl"
inreplace "Makefile", "cp nl.mo $(DESTDIR)/$(PREFIX)/share/locale/nl/LC_MESSAGES/httping.mo", ""
system "make", "install", "PREFIX=#{prefix}"