aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/httpry.rb
blob: 3da8ebfbaa41536a447e6361bcdd8da3abf8339a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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'

  depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3

  def install
    system "bsdmake"
    bin.install 'httpry'
    man1.install 'httpry.1'
  end
end