blob: 4956d24fc28f7ae24b3f12e1129623dae490020f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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://svn.macports.org/repository/macports/!svn/bc/88419/trunk/dports/net/httping/files/patch-strndup.diff' }
end
def install
system "make install PREFIX=#{prefix}"
end
end
|