homebrew-core/Formula/ttytter.rb

24 lines
610 B
Ruby
Raw Normal View History

require 'formula'
2011-03-13 01:43:53 +00:00
class Ttytter < ScriptFileFormula
homepage 'http://www.floodgap.com/software/ttytter/'
2012-12-28 00:15:27 +00:00
url 'http://www.floodgap.com/software/ttytter/dist2/2.1.00.txt'
sha1 'dd20d55aa819699b3e39ca4c35bf390b3e074db3'
def install
2012-12-28 00:15:27 +00:00
bin.install '2.1.00.txt' => 'ttytter'
2010-10-13 13:18:40 +00:00
end
def caveats; <<-EOS.undent
To take full advantage of readline features you must install readline:
brew install readline
2010-10-13 13:18:40 +00:00
and the Perl Module Term::ReadLine::TTYtter
cpan -i Term::ReadLine::TTYtter
Or if you have cpanminus:
cpanm Term::ReadLine::TTYtter
EOS
end
end