homebrew-core/Formula/pit.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

12 lines
266 B
Ruby

require 'formula'
class Pit < Formula
homepage 'https://github.com/michaeldv/pit'
url 'https://github.com/michaeldv/pit/archive/0.1.0.tar.gz'
sha1 '867698a2ef4d01587d81fe89dfd0e549d5b42e49'
def install
system "make"
bin.install "bin/pit"
end
end