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