51 lines
1.4 KiB
Ruby
51 lines
1.4 KiB
Ruby
class Byobu < Formula
|
|
desc "Text-based window manager and terminal multiplexer"
|
|
homepage "https://launchpad.net/byobu"
|
|
url "https://launchpad.net/byobu/trunk/5.133/+download/byobu_5.133.orig.tar.gz"
|
|
sha256 "4d8ea48f8c059e56f7174df89b04a08c32286bae5a21562c5c6f61be6dab7563"
|
|
license "GPL-3.0-only"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "45b2277b96cd2c4c4170fbbe4a8ac92665062e8d0c835bfbd24ee3e3d52f2616"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/dustinkirkland/byobu.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
depends_on "coreutils"
|
|
depends_on "newt"
|
|
depends_on "tmux"
|
|
|
|
conflicts_with "ctail", because: "both install `ctail` binaries"
|
|
|
|
def install
|
|
if build.head?
|
|
cp "./debian/changelog", "./ChangeLog"
|
|
system "autoreconf", "-fvi"
|
|
end
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
|
|
byobu_python = Formula["newt"].deps
|
|
.find { |d| d.name.match?(/^python@\d\.\d+$/) }
|
|
.to_formula
|
|
.opt_bin/"python3"
|
|
|
|
lib.glob("byobu/include/*.py").each do |script|
|
|
byobu_script = "byobu-#{script.basename(".py")}"
|
|
|
|
libexec.install(bin/byobu_script)
|
|
(bin/byobu_script).write_env_script(libexec/byobu_script, BYOBU_PYTHON: byobu_python)
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"byobu-status"
|
|
end
|
|
end
|