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-07-14 18:45:06 +00:00
|
|
|
url 'https://launchpad.net/byobu/trunk/5.21/+download/byobu_5.21.orig.tar.gz'
|
|
|
|
sha1 '81ed721b643addf84c7aba10f173c27dc69391bd'
|
2012-05-19 04:27:06 +00:00
|
|
|
|
|
|
|
depends_on 'coreutils'
|
2012-07-20 03:55:27 +00:00
|
|
|
depends_on 'gnu-sed' # fails with BSD sed
|
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
|