blob: fcad51a3825dd4066ce1b06fd38d8e37dadbc590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Idcomments <Formula
url 'http://tools.ietf.org/tools/idcomments/idcomments-0.18.tgz'
homepage 'http://tools.ietf.org/tools/idcomments/'
md5 '6ceb271af37754657c7f81b3dba334de'
def install
inreplace 'idcomments', '$(tempfile)', '$(mktemp /tmp/idcomments.XXXXXXXX)'
bin.install 'idcomments'
doc.install %w(about changelog copyright todo)
end
end
|