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