homebrew-core/Formula/ttytter.rb
Jack Baty 2027ad1c74 ttytter 2.0.00
Closes Homebrew/homebrew#12060.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-05-04 11:49:02 -07:00

23 lines
601 B
Ruby

require 'formula'
class Ttytter < ScriptFileFormula
homepage 'http://www.floodgap.com/software/ttytter/'
url 'http://www.floodgap.com/software/ttytter/dist2/2.0.00.txt'
md5 '54a5dbd79f289d28f46e8f58fee0a6a1'
def install
bin.install '2.0.00.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