2013-08-18 07:44:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Texapp < Formula
|
|
|
|
homepage 'http://www.floodgap.com/software/texapp/'
|
2013-10-13 04:49:05 +00:00
|
|
|
url 'http://www.floodgap.com/software/texapp/dist0/0.6.04.txt'
|
|
|
|
sha1 '023a2e2ebf6ea2cac503501e8939124b2a73896a'
|
2013-08-18 07:44:49 +00:00
|
|
|
|
|
|
|
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
|