2014-06-23 01:35:18 +00:00
|
|
|
require "formula"
|
2011-06-16 00:53:38 +00:00
|
|
|
|
|
|
|
class Httpry < Formula
|
2014-06-23 01:35:18 +00:00
|
|
|
homepage "http://dumpsterventures.com/jason/httpry/"
|
|
|
|
url "http://dumpsterventures.com/jason/httpry/httpry-0.1.8.tar.gz"
|
|
|
|
sha1 "163dcd1ab8cb2e8cef3cda2d7f0dea1b04deb338"
|
2011-06-16 00:53:38 +00:00
|
|
|
|
2014-12-05 06:32:34 +00:00
|
|
|
depends_on "bsdmake" => :build
|
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"
|
2014-06-23 01:35:18 +00:00
|
|
|
bin.install "httpry"
|
|
|
|
man1.install "httpry.1"
|
2011-06-16 00:53:38 +00:00
|
|
|
end
|
|
|
|
end
|