aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTobias Steinhoff2010-10-11 21:15:09 +0200
committerAdam Vandenberg2010-10-13 06:09:37 -0700
commit668d39d6695eee6a0ddc3ffe6ecbe69cd7c80b5b (patch)
tree761ae913b2706ef9ea035462cae3e2f9284017d9 /Library
parent9036c7964c42b47390f5c2c02c79ac59bf88c123 (diff)
downloadhomebrew-668d39d6695eee6a0ddc3ffe6ecbe69cd7c80b5b.tar.bz2
ttytter 1.1.6
* added some notes how to use the new readline feature Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ttytter.rb16
1 files changed, 13 insertions, 3 deletions
diff --git a/Library/Formula/ttytter.rb b/Library/Formula/ttytter.rb
index 4227f6ceb..7ed8c61db 100644
--- a/Library/Formula/ttytter.rb
+++ b/Library/Formula/ttytter.rb
@@ -1,11 +1,21 @@
require 'formula'
class Ttytter <ScriptFileFormula
- url 'http://www.floodgap.com/software/ttytter/dist1/1.1.05.txt'
+ url 'http://www.floodgap.com/software/ttytter/dist1/1.1.06.txt'
homepage 'http://www.floodgap.com/software/ttytter/'
- md5 '354aa87ed02105b800a8dcb9e658f8dd'
+ md5 'cfb9a2b9334c194ace2d695bf01a3025'
def install
- bin.install '1.1.05.txt' => 'ttytter'
+ bin.install '1.1.06.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