2010-01-17 01:13:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Httping < Formula
|
2010-01-17 01:13:10 +00:00
|
|
|
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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '3606bb3b2d899c8f3fb178a295520e113bcb8e56'
|
2012-01-01 22:48:02 +00:00
|
|
|
|
|
|
|
def patches
|
|
|
|
# fixes conflicting definitions of strdup()
|
2012-01-23 01:13:47 +00:00
|
|
|
{ :p0 => 'https://trac.macports.org/export/88419/trunk/dports/net/httping/files/patch-strndup.diff' }
|
2012-01-01 22:48:02 +00:00
|
|
|
end
|
2010-01-17 01:13:10 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
2010-01-17 01:13:10 +00:00
|
|
|
end
|
|
|
|
end
|