2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-30 05:19:25 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tmux < Formula
|
2012-01-24 14:26:02 +00:00
|
|
|
url 'http://sourceforge.net/projects/tmux/files/tmux/tmux-1.6/tmux-1.6.tar.gz'
|
|
|
|
md5 '3e37db24aa596bf108a0442a81c845b3'
|
2009-12-17 23:10:48 +00:00
|
|
|
homepage 'http://tmux.sourceforge.net'
|
2009-09-30 05:19:25 +00:00
|
|
|
|
2012-01-28 00:47:31 +00:00
|
|
|
head 'https://tmux.svn.sourceforge.net/svnroot/tmux/trunk'
|
|
|
|
|
2010-03-22 21:19:12 +00:00
|
|
|
depends_on 'libevent'
|
|
|
|
|
2012-02-28 15:39:22 +00:00
|
|
|
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
2009-09-30 05:19:25 +00:00
|
|
|
def install
|
2012-01-28 00:47:31 +00:00
|
|
|
system "sh", "autogen.sh" if ARGV.build_head?
|
|
|
|
|
2011-07-12 02:02:24 +00:00
|
|
|
ENV.append "LDFLAGS", '-lresolv'
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--sysconfdir=#{etc}"
|
2009-09-30 05:19:25 +00:00
|
|
|
system "make install"
|
2011-07-12 02:02:24 +00:00
|
|
|
|
2011-06-16 00:25:52 +00:00
|
|
|
# Install bash completion scripts for use with bash-completion
|
|
|
|
(prefix+'etc/bash_completion.d').install "examples/bash_completion_tmux.sh" => 'tmux'
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Bash completion script was installed to:
|
|
|
|
#{etc}/bash_completion.d/tmux
|
|
|
|
EOS
|
2009-09-30 05:19:25 +00:00
|
|
|
end
|
|
|
|
end
|