homebrew-core/Formula/byobu.rb
Ido Samuelson c76c5395d2 byobu 2.90
Closes Homebrew/homebrew#36287.
Closes Homebrew/homebrew#36255.

Signed-off-by: Brett Koonce <koonce@gmail.com>
2015-01-27 21:42:37 -08:00

23 lines
568 B
Ruby

require 'formula'
class Byobu < Formula
homepage 'http://byobu.co'
url 'https://launchpad.net/byobu/trunk/5.90/+download/byobu_5.90.orig.tar.gz'
sha1 'eea1d07673bc62ac1f5464111106fffd4bc22230'
depends_on 'coreutils'
depends_on 'gnu-sed' # fails with BSD sed
depends_on 'tmux'
depends_on 'newt' => 'with-python'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
def caveats; <<-EOS.undent
Add the following to your shell configuration file:
export BYOBU_PREFIX=$(brew --prefix)
EOS
end
end