Skip to content

Instantly share code, notes, and snippets.

@nyarla

nyarla/tmux.rb Secret

Last active June 22, 2016 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nyarla/e61133ea98e79f66209d to your computer and use it in GitHub Desktop.
Save nyarla/e61133ea98e79f66209d to your computer and use it in GitHub Desktop.
(OBSOLETED) This code is no longer maintenance
class Tmux < Formula
desc "Terminal multiplexer"
homepage "https://tmux.github.io/"
url "https://github.com/tmux/tmux/releases/download/2.1/tmux-2.1.tar.gz"
sha256 "31564e7bf4bcef2defb3cb34b9e596bd43a3937cad9e5438701a81a5a9af6176"
bottle do
cellar :any
sha256 "165ad1037a3993fd12c745cdf77bdd31133c0e13188ede37096532dddb5591c6" => :el_capitan
sha256 "44f62e8bed576ac82d5e2f768a6f3c6efb86fe7e45b37873d137294c8ef887b6" => :yosemite
sha256 "9c0e2229d5acdb81fcaea40776b0841301167b10fcdb3af961e07dc2d2709317" => :mavericks
end
def pour_bottle?
false
end
head do
url "https://github.com/tmux/tmux.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "libevent"
patch :p1 do
url "https://gist.githubusercontent.com/waltarix/1399751/raw/695586fad1664f500df9a22622a6ff52c262c3eb/tmux-ambiguous-width-cjk.patch"
sha256 "943a1d99dc76c3bdde82b24ecca732f0410c3e58dba39396cc7f87c9635bc37c"
end
patch :p1 do
url "https://gist.githubusercontent.com/waltarix/1399751/raw/695586fad1664f500df9a22622a6ff52c262c3eb/tmux-do-not-combine-utf8.patch"
sha256 "71f4b983083dfbea1ee104ee9538dd96d979843e4100ffa71b069bfd51d9289c"
end
patch :p1 do
url "https://gist.githubusercontent.com/waltarix/1399751/raw/695586fad1664f500df9a22622a6ff52c262c3eb/tmux-pane-border-ascii.patch"
sha256 "50dc763b4933e77591bf2f79cd432613c656725156ad21166d77814dfefd1952"
end
def install
system "sh", "autogen.sh" if build.head?
ENV.append "LDFLAGS", "-lresolv"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}"
system "make", "install"
bash_completion.install "examples/bash_completion_tmux.sh" => "tmux"
pkgshare.install "examples"
end
def caveats; <<-EOS.undent
Example configurations have been installed to:
#{opt_pkgshare}/examples
EOS
end
test do
system "#{bin}/tmux", "-V"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment