blob: 5aed2375b5e573f1655d990b729ae8e5a1e9df80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rfcmarkup <Formula
url 'http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.90.tgz'
homepage 'http://tools.ietf.org/tools/rfcmarkup/'
md5 'bcab3d383c29b438df47e1a1d104e9db'
def install
inreplace "rfcmarkup", "/usr/local/bin/python", "/usr/bin/env python"
bin.install "rfcmarkup"
prefix.install 'todo'
end
end
|