homebrew-core/Formula/mr.rb

14 lines
306 B
Ruby

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