blob: dbd8ddb9f68d9d7764c93734c03a6a35da3e5755 (
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
|