blob: ce827345e2b977f8c2a9678bd68c53700a64ea44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Rfcstrip < Formula
url 'http://trac.tools.ietf.org/tools/rfcstrip/rfcstrip-1.03.tgz'
homepage 'http://trac.tools.ietf.org/tools/rfcstrip/'
sha1 '1436aced9980856585e061bda26df7c9d7d9cc7e'
def install
bin.install "rfcstrip"
doc.install %w(about todo)
end
end
|