2011-06-16 00:53:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Httpry < Formula
|
|
|
|
url 'http://dumpsterventures.com/jason/httpry/httpry-0.1.5.tar.gz'
|
|
|
|
homepage 'http://dumpsterventures.com/jason/httpry/'
|
|
|
|
md5 '7fbba29eaeec1fd6b25e6fa3a12be25d'
|
|
|
|
|
2012-03-17 16:16:10 +00:00
|
|
|
depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3
|
2012-03-16 18:49:56 +00:00
|
|
|
|
2011-06-16 00:53:38 +00:00
|
|
|
def install
|
2012-03-16 18:49:56 +00:00
|
|
|
system "bsdmake"
|
2011-06-16 00:53:38 +00:00
|
|
|
bin.install 'httpry'
|
|
|
|
man1.install 'httpry.1'
|
|
|
|
end
|
|
|
|
end
|