aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorLars Eggert2010-02-10 17:26:02 +0200
committerAdam Vandenberg2010-04-16 14:48:01 -0700
commit79cbaf1b1609fa85226e86b41e14b6f153053996 (patch)
tree2169833493a78caee2307395ba715fcaec40e89d /Library/Formula
parent63c96513e765cf689bf81e99003f13a92aee4985 (diff)
downloadhomebrew-79cbaf1b1609fa85226e86b41e14b6f153053996.tar.bz2
New formula: rfcmarkup
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rfcmarkup.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rfcmarkup.rb b/Library/Formula/rfcmarkup.rb
new file mode 100644
index 000000000..885cfc38a
--- /dev/null
+++ b/Library/Formula/rfcmarkup.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Rfcmarkup <Formula
+ url 'http://tools.ietf.org/tools/rfcmarkup/rfcmarkup-1.85.tgz'
+ homepage 'http://tools.ietf.org/tools/rfcmarkup/'
+ md5 '39b0a71dd7da79c781093fe48d290de1'
+
+ def install
+ inreplace "rfcmarkup", "/usr/local/bin/python", "/usr/bin/python"
+ bin.install "rfcmarkup"
+ doc.install %w(changelog copyright todo)
+ end
+end