2010-08-27 18:01:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2013-06-06 23:38:11 +00:00
|
|
|
class Ttytter < Formula
|
2011-09-27 07:44:44 +00:00
|
|
|
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'
|
2010-08-27 18:01:46 +00:00
|
|
|
|
|
|
|
def install
|
2013-08-12 23:53:39 +00:00
|
|
|
bin.install "#{version}.txt" => "ttytter"
|
2010-10-13 13:18:40 +00:00
|
|
|
end
|
2010-10-11 19:15:09 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2013-06-06 23:38:11 +00:00
|
|
|
To take full advantage of readline features you must install readline:
|
|
|
|
brew install readline
|
2011-04-04 23:56:47 +00:00
|
|
|
|
2013-06-06 23:38:11 +00:00
|
|
|
and the Perl Module Term::ReadLine::TTYtter
|
|
|
|
cpan -i Term::ReadLine::TTYtter
|
2011-04-04 23:56:47 +00:00
|
|
|
|
2013-06-06 23:38:11 +00:00
|
|
|
Or if you have cpanminus:
|
|
|
|
cpanm Term::ReadLine::TTYtter
|
2010-10-11 19:15:09 +00:00
|
|
|
EOS
|
2010-08-27 18:01:46 +00:00
|
|
|
end
|
|
|
|
end
|