aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tmux.rb
blob: 1f566018f765fe735c410a4f29259d7d07a38bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Tmux <Formula
  url 'http://downloads.sourceforge.net/tmux/tmux-1.2.tar.gz'
  md5 '748fbe7bb5f86812e19bd6005ff21a5a'
  homepage 'http://tmux.sourceforge.net'

  depends_on 'libevent'

  def install
    ENV['PREFIX'] = "#{prefix}"
    system "./configure"

    inreplace "GNUmakefile" do |f|
      # Fix 'install' flags
      f.gsub! " -g bin -o root", ""
      # Put docs in the right place
      f.gsub! "man/man1", "share/man/man1"
    end

    system "make install"
  end
end