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