2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-30 05:19:25 +00:00
|
|
|
|
|
|
|
class Tmux <Formula
|
2009-11-06 15:42:14 +00:00
|
|
|
url 'http://downloads.sourceforge.net/tmux/tmux-1.1.tar.gz'
|
2009-09-30 14:03:43 +00:00
|
|
|
homepage 'http://tmux.sourceforge.net'
|
2009-11-06 15:42:14 +00:00
|
|
|
md5 'faf2fc52ac3ae63d899f6fece2c112cd'
|
2009-09-30 05:19:25 +00:00
|
|
|
|
|
|
|
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
|