2010-09-12 16:17:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Byobu < Formula
|
2013-01-21 05:28:42 +00:00
|
|
|
homepage 'http://byobu.co'
|
2014-01-02 14:41:01 +00:00
|
|
|
url 'https://launchpad.net/byobu/trunk/5.69/+download/byobu_5.69.orig.tar.gz'
|
|
|
|
sha1 '28823d25563e4356ac7dde7726d7dc68fb01ead8'
|
2012-05-19 04:27:06 +00:00
|
|
|
|
|
|
|
depends_on 'coreutils'
|
2012-07-20 03:55:27 +00:00
|
|
|
depends_on 'gnu-sed' # fails with BSD sed
|
2013-01-21 05:35:08 +00:00
|
|
|
depends_on 'tmux'
|
2013-06-16 10:08:34 +00:00
|
|
|
depends_on 'newt' => 'with-python'
|
2010-09-12 16:17:00 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
2012-02-19 03:58:56 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2012-05-19 04:27:06 +00:00
|
|
|
Add the following to your shell configuration file:
|
|
|
|
export BYOBU_PREFIX=$(brew --prefix)
|
2012-02-19 03:58:56 +00:00
|
|
|
EOS
|
|
|
|
end
|
2010-09-12 16:17:00 +00:00
|
|
|
end
|