aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-30 12:39:18 -0800
committerAdam Vandenberg2013-11-30 12:39:18 -0800
commitf8f385e3fe6da5b9069526c8c8681bc2c4ac67af (patch)
treea3987d681ea3718b4744cec58c7574964ac121a6 /Library
parent638d4ab1016e1243d53001a3f4eeb5239dac43d0 (diff)
downloadhomebrew-f8f385e3fe6da5b9069526c8c8681bc2c4ac67af.tar.bz2
httping 2.3.3
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/httping.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/httping.rb b/Library/Formula/httping.rb
index 76664ef90..569658184 100644
--- a/Library/Formula/httping.rb
+++ b/Library/Formula/httping.rb
@@ -2,15 +2,15 @@ require 'formula'
class Httping < Formula
homepage 'http://www.vanheusden.com/httping/'
- url 'http://www.vanheusden.com/httping/httping-2.2.1.tgz'
- sha1 '9924bd2c1af4b8e2a4c33125323413f92866827d'
+ url 'http://www.vanheusden.com/httping/httping-2.3.3.tgz'
+ sha1 '6b9e77039346388e2b02dbb1d60f7422e7133488'
- def patches
- # fixes conflicting definitions of strdup()
- { :p0 => 'https://trac.macports.org/export/88419/trunk/dports/net/httping/files/patch-strndup.diff' }
- end
+ depends_on 'gettext'
+ depends_on 'fftw' => :optional
def install
+ ENV.append "LDFLAGS", "-lintl"
+ inreplace "Makefile", "cp nl.mo $(DESTDIR)/$(PREFIX)/share/locale/nl/LC_MESSAGES/httping.mo", ""
system "make", "install", "PREFIX=#{prefix}"
end
end