6ded14eefc
- add dep on coreutils to get GNU readlink - simplify caveats Closes Homebrew/homebrew#11160. Closes Homebrew/homebrew#12006. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
468 B
Ruby
20 lines
468 B
Ruby
require 'formula'
|
|
|
|
class Byobu < Formula
|
|
homepage 'http://launchpad.net/byobu'
|
|
url 'http://launchpad.net/byobu/trunk/5.18/+download/byobu_5.18.orig.tar.gz'
|
|
md5 '5940cef1ae3d750b5712793a90901d67'
|
|
|
|
depends_on 'coreutils'
|
|
|
|
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
|