2010-09-11 03:24:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mr < Formula
|
2010-09-11 03:24:59 +00:00
|
|
|
homepage 'http://kitenet.net/~joey/code/mr/'
|
2013-05-05 07:02:21 +00:00
|
|
|
url 'git://git.kitenet.net/mr', :tag => '1.15'
|
|
|
|
version '1.15'
|
2010-09-11 03:24:59 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
2012-09-04 01:11:20 +00:00
|
|
|
bin.install 'mr', 'webcheckout'
|
2010-09-19 18:15:10 +00:00
|
|
|
man1.install gzip('mr.1', 'webcheckout.1')
|
2012-09-04 01:11:20 +00:00
|
|
|
(share/'mr').install Dir['lib/*']
|
2010-09-11 03:24:59 +00:00
|
|
|
end
|
|
|
|
end
|