2010-09-12 16:17:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Byobu < Formula
|
2012-02-19 03:58:56 +00:00
|
|
|
url 'http://launchpad.net/byobu/trunk/5.12/+download/byobu_5.12.orig.tar.gz'
|
2010-09-12 16:17:00 +00:00
|
|
|
homepage 'http://launchpad.net/byobu'
|
2012-02-19 03:58:56 +00:00
|
|
|
md5 '15c3d0fd2923fba0a6d77fc52d59b81a'
|
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
|
|
|
|
After installing, add the following path to your .bashrc or .zshrc file:
|
|
|
|
export BYOBU_PREFIX=`brew --prefix`
|
|
|
|
EOS
|
|
|
|
end
|
2010-09-12 16:17:00 +00:00
|
|
|
end
|