72dafb7194
3.29 uses GNU readlink upstream bug: https://bugs.launchpad.net/byobu/+bug/740370
12 lines
299 B
Ruby
12 lines
299 B
Ruby
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
|