homebrew-core/Formula/byobu.rb
Dustin Kirkland e390081c35 Byobu 5.39
Closes Homebrew/homebrew#19671.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-07 21:48:35 -07:00

22 lines
531 B
Ruby

require 'formula'
class Byobu < Formula
homepage 'http://byobu.co'
url 'https://launchpad.net/byobu/trunk/5.39/+download/byobu_5.39.orig.tar.gz'
sha1 '65b22a3c6bfa7e6a7ddb6838fc95dcb217522493'
depends_on 'coreutils'
depends_on 'gnu-sed' # fails with BSD sed
depends_on 'tmux'
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