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