blob: bb9f0745e4a3efaa85ea2238a0bf14dc6098eb2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Mr < Formula
homepage 'http://myrepos.branchable.com/'
url 'git://myrepos.branchable.com/', :tag => '1.20130826'
def install
system "make"
bin.install 'mr', 'webcheckout'
man1.install gzip('mr.1', 'webcheckout.1')
(share/'mr').install Dir['lib/*']
end
end
|