homebrew-core/Formula/httping.rb

17 lines
441 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Httping < Formula
homepage 'http://www.vanheusden.com/httping/'
2012-06-04 03:45:44 +00:00
url 'http://www.vanheusden.com/httping/httping-1.5.3.tgz'
md5 '62879f0a2d70e32279081276d42aaa28'
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