aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tmux.rb
blob: f60548819b0624a6af21dda106ee8d7b7b381b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Tmux <Formula
  url 'http://downloads.sourceforge.net/tmux/tmux-1.0.tar.gz'
  homepage 'http://tmux.sourceforge.net'
  md5 '716b12d9ea052f57d917bf2869d419df'

  def install
    ENV['PREFIX'] = "#{prefix}"
    system "./configure"
    inreplace "GNUmakefile", " -g bin -o root", ""
    inreplace "GNUmakefile", "man/man1", "share/man/man1"
    system "make install"
  end
end