homebrew-core/Formula/ttytter.rb
Brett Koonce a10c5877f6 ttytter 2.0.02
Closes Homebrew/homebrew#13760.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-29 21:38:11 -07:00

23 lines
610 B
Ruby

require 'formula'
class Ttytter < ScriptFileFormula
homepage 'http://www.floodgap.com/software/ttytter/'
url 'http://www.floodgap.com/software/ttytter/dist2/2.0.02.txt'
sha1 '2fef9f67979584e1175eada166e3680b6c806492'
def install
bin.install '2.0.02.txt' => 'ttytter'
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