2010-09-12 16:17:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Byobu < Formula
|
2010-09-12 16:17:00 +00:00
|
|
|
homepage 'http://launchpad.net/byobu'
|
2012-05-19 04:27:06 +00:00
|
|
|
url 'http://launchpad.net/byobu/trunk/5.18/+download/byobu_5.18.orig.tar.gz'
|
|
|
|
md5 '5940cef1ae3d750b5712793a90901d67'
|
|
|
|
|
|
|
|
depends_on 'coreutils'
|
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
|