aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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