aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-06-09 09:04:42 -0700
committerAdam Vandenberg2012-06-09 09:04:42 -0700
commit804f6efb5ba5f5fe13ee333c5a8624eca252231e (patch)
treecf4b5428196b859e9f7eff34b790bbf171ef5e8d /Library
parent322514ecb9347d1e4c1f3daf535d7f20b1681b1b (diff)
downloadhomebrew-804f6efb5ba5f5fe13ee333c5a8624eca252231e.tar.bz2
tmux: install NOTES file
NOTES contains additional setup instructions. Reference it in the caveats.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tmux.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Formula/tmux.rb b/Library/Formula/tmux.rb
index 2e9b4e37a..a3b8c6d3b 100644
--- a/Library/Formula/tmux.rb
+++ b/Library/Formula/tmux.rb
@@ -1,9 +1,9 @@
require 'formula'
class Tmux < Formula
- url 'http://sourceforge.net/projects/tmux/files/tmux/tmux-1.6/tmux-1.6.tar.gz'
- md5 '3e37db24aa596bf108a0442a81c845b3'
homepage 'http://tmux.sourceforge.net'
+ url 'http://sourceforge.net/projects/tmux/files/tmux/tmux-1.6/tmux-1.6.tar.gz'
+ sha1 '8756f6bcecb18102b87e5d6f5952ba2541f68ed3'
head 'https://tmux.svn.sourceforge.net/svnroot/tmux/trunk'
@@ -24,9 +24,15 @@ class Tmux < Formula
# Install bash completion scripts for use with bash-completion
(prefix+'etc/bash_completion.d').install "examples/bash_completion_tmux.sh" => 'tmux'
+
+ # Install addtional meta file
+ prefix.install 'NOTES'
end
def caveats; <<-EOS.undent
+ Additional information can be found in:
+ #{prefix}/NOTES
+
Bash completion script was installed to:
#{etc}/bash_completion.d/tmux
EOS