blob: 76dc86a9b1d48715142fb94896007dbdf722b2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Redo <Formula
version '0.05'
url "https://github.com/apenwarr/redo/zipball/redo-#{version}"
homepage 'https://github.com/apenwarr/redo'
md5 'e96fe6dbdb75f8512a2ebf62b064186b'
def install
ENV['PREFIX'] = prefix
system "./redo install"
end
end
|