aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBryce Chidester2013-08-18 00:44:49 -0700
committerAdam Vandenberg2013-08-30 10:29:20 -0700
commit096f0248314e4f05a56e32b8131c36b3bfe6c8b5 (patch)
treec1b98e0249b21f9ca9dc7fa4d3003b7731426902 /Library
parent647e6877137d016aa8ded422c8041828f38b3f0a (diff)
downloadhomebrew-096f0248314e4f05a56e32b8131c36b3bfe6c8b5.tar.bz2
texapp 0.6.00
Closes #21973. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/texapp.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/texapp.rb b/Library/Formula/texapp.rb
new file mode 100644
index 000000000..54ec5b1bc
--- /dev/null
+++ b/Library/Formula/texapp.rb
@@ -0,0 +1,23 @@
+require 'formula'
+
+class Texapp < Formula
+ homepage 'http://www.floodgap.com/software/texapp/'
+ url 'http://www.floodgap.com/software/texapp/dist0/0.6.00.txt'
+ sha1 'b9f07560d1182d6d35064ef25a6a3da7362d563c'
+
+ def install
+ bin.install "#{version}.txt" => "texapp"
+ end
+
+ def caveats; <<-EOS.undent
+ To take full advantage of readline features you must install readline:
+ brew install readline
+
+ and the Perl Module Term::ReadLine::TTYtter
+ cpan -i Term::ReadLine::TTYtter
+
+ Or if you have cpanminus:
+ cpanm Term::ReadLine::TTYtter
+ EOS
+ end
+end