blob: 09bf4f2612f2abee9e4aa74eb6ae68c3a99b613f (
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.28/+download/byobu_3.28.orig.tar.gz'
  homepage 'http://launchpad.net/byobu'
  md5 '4c8b08924925c52fbdc02cebeeed3745'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
  |