homebrew-core/Formula/httping.rb
Oliver Hookins 6f966b3ff1 httping: Update to 1.5.6
1.5.3 is no longer available.

Closes Homebrew/homebrew#16525.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-12-12 09:21:16 -08:00

16 lines
450 B
Ruby

require 'formula'
class Httping < Formula
homepage 'http://www.vanheusden.com/httping/'
url 'http://www.vanheusden.com/httping/httping-1.5.6.tgz'
sha1 '146d114ff6359556ae5f720964aa091b39dbb506'
def patches
# fixes conflicting definitions of strdup()
{ :p0 => 'https://trac.macports.org/export/88419/trunk/dports/net/httping/files/patch-strndup.diff' }
end
def install
system "make", "install", "PREFIX=#{prefix}"
end
end