homebrew-core/Formula/byobu.rb

23 lines
531 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Byobu < Formula
homepage 'http://byobu.co'
url 'https://launchpad.net/byobu/trunk/5.37/+download/byobu_5.37.orig.tar.gz'
sha1 '000c487b3f660af42976ae91c89e3f678dea7289'
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