blob: 8951759f53ae130089543bd551664b573677bd94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Pit < Formula
url 'https://github.com/michaeldv/pit/tarball/0.1.0'
homepage 'http://github.com/michaeldv/pit'
sha1 'c03e5d6b1ad0a59124be45aca9395dafac5260a4'
def install
system "make"
bin.install "bin/pit"
end
end
|