aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/byobu.rb
blob: a52c9193473d5ad308304a87b53526178f3312af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Byobu < Formula
  homepage 'http://launchpad.net/byobu'
  url 'https://launchpad.net/byobu/trunk/5.21/+download/byobu_5.21.orig.tar.gz'
  sha1 '81ed721b643addf84c7aba10f173c27dc69391bd'

  depends_on 'coreutils'
  depends_on 'gnu-sed' # fails with BSD sed

  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