aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/httpry.rb
blob: 02ef6b686044cc349c6506ab748a51f8a0808369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Httpry < Formula
  homepage 'http://dumpsterventures.com/jason/httpry/'
  url 'http://dumpsterventures.com/jason/httpry/httpry-0.1.5.tar.gz'
  sha1 'b9c5b117502c8e52fa19812f5e26cc0d82afde3d'

  depends_on :bsdmake

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