homebrew-core/Formula/httping.rb
Jack Nagel f088a08e87 Normalize MacPorts patch URLs
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-01-22 19:18:29 -06:00

16 lines
435 B
Ruby

require 'formula'
class Httping < Formula
url 'http://www.vanheusden.com/httping/httping-1.4.4.tgz'
homepage 'http://www.vanheusden.com/httping/'
md5 'e36bb30bd758c766d7260bdde6fe6450'
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