2011-06-16 00:53:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Httpry < Formula
|
|
|
|
homepage 'http://dumpsterventures.com/jason/httpry/'
|
2012-08-04 15:59:21 +00:00
|
|
|
url 'http://dumpsterventures.com/jason/httpry/httpry-0.1.7.tar.gz'
|
|
|
|
sha1 '22cc6aa8079abf671b9e7f4f93b615d0b7d389d3'
|
2011-06-16 00:53:38 +00:00
|
|
|
|
2012-07-10 16:56:33 +00:00
|
|
|
depends_on :bsdmake
|
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
|