aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pit.rb
blob: 3c4b6ff85dac951e1f4a421d05515f0145e9c863 (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/tarball/0.1.0'
  sha1 'c03e5d6b1ad0a59124be45aca9395dafac5260a4'

  def install
    system "make"
    bin.install "bin/pit"
  end
end