homebrew-core/Formula/httpry.rb
Jack Nagel f0ab6455bb Depend on bsdmake where necessary
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-16 16:19:07 -05:00

15 lines
365 B
Ruby

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' if MacOS.xcode_version.to_f >= 4.3
def install
system "bsdmake"
bin.install 'httpry'
man1.install 'httpry.1'
end
end