88779ade49
Closes Homebrew/homebrew#14653.
13 lines
401 B
Ruby
13 lines
401 B
Ruby
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
|