aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/byobu.rb
blob: 9923e42f03edecc954849fd826f01635885f0b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Byobu <Formula
  url 'http://launchpad.net/byobu/trunk/3.4/+download/byobu_3.4.orig.tar.gz'
  homepage 'http://launchpad.net/byobu'
  md5 '694c1663f178517b995ec9ca574fc463'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end