8cf951522d
Closes Homebrew/homebrew#17948. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
450 B
Ruby
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.8.tgz'
|
|
sha1 'd736194395aed0493c4b7e8b7c2a01fe513d17be'
|
|
|
|
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
|