blob: dfeddcf115b3d88d52adaeb8c4866875fd317e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'formula'
class RedoDocs < Formula
head 'https://github.com/apenwarr/redo.git', {:using => :git, :branch => 'man' }
version 'foo'
end
class Redo < Formula
version '0.10'
url "https://github.com/apenwarr/redo/zipball/redo-#{version}"
homepage 'https://github.com/apenwarr/redo'
md5 '69b31b105db347968ee9486342fb6c1d'
def install
ENV['PREFIX'] = prefix
system "./redo install"
rm share/:doc/:redo/'README.md' # lets not have two copies
RedoDocs.new('redodocs').brew do |formula|
man1.install Dir['*']
end
end
end
|