blob: e56eb1cb2c58109b96171cec2bd3e800f73826b9 (
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/'
sha1 'e7e6430926b0c502afcb55a91e90cd84d55c07d4'
def install
inreplace 'idcomments', '$(tempfile)', '$(mktemp /tmp/idcomments.XXXXXXXX)'
bin.install 'idcomments'
doc.install %w(about changelog copyright todo)
end
end
|