homebrew-core/Formula/texapp.rb
Bryce Chidester abf4f0e006 texapp 0.6.9
Closes Homebrew/homebrew#35958.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2015-01-17 00:16:34 -08:00

23 lines
582 B
Ruby

require 'formula'
class Texapp < Formula
homepage 'http://www.floodgap.com/software/texapp/'
url 'http://www.floodgap.com/software/texapp/dist0/0.6.09.txt'
sha1 '69206f2c23ef90bdb2830d24228d6059a8b06388'
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