homebrew-core/Formula/byobu.rb
co-me b1d35ebe59 byobu 5.41
Closes Homebrew/homebrew#20538.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-18 08:02:15 -07:00

23 lines
568 B
Ruby

require 'formula'
class Byobu < Formula
homepage 'http://byobu.co'
url 'https://launchpad.net/byobu/trunk/5.41/+download/byobu_5.41.orig.tar.gz'
sha1 'fdf4e6384936def0dd45485b5b32e20d366a3cbc'
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