aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pit.rb
blob: 0a77bbd06afa8775c5ad3a987c545486e3417228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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