Forked from tomasbasham/install_tmux_osx_no_brew
Last active
February 4, 2026 17:42
-
-
Save xtremebeing/a87148068bc7168d414b9c4ccf231fef to your computer and use it in GitHub Desktop.
Revisions
-
xtremebeing revised this gist
Feb 4, 2026 . 1 changed file with 12 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,30 +3,30 @@ mkdir ~/tmux-install cd ~/tmux-install # Get the files curl -OL https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz curl -OL https://github.com/tmux/tmux/releases/download/3.6a/tmux-3.6a.tar.gz curl -OL https://github.com/libevent/libevent/releases/download/release-2.1.12-stable/libevent-2.1.12-stable.tar.gz # Extract them tar xzf openssl-3.5.5.tar.gz tar xzf tmux-3.6a.tar.gz tar xzf libevent-2.1.12-stable.tar.gz # Compile openssl cd openssl-3.5.5 ./Configure darwin64-x86_64-cc --prefix=/usr/local make CFLAGS='-I/usr/local/ssl/include' make test sudo make install # Compile libevent cd ../libevent-2.1.12-stable ./configure make sudo make install # Compile tmux cd ../tmux-3.6a LDFLAGS="-L/usr/local/lib" CPPFLAGS="-I/usr/local/include" LIBS="-lresolv" ./configure --prefix=/usr/local --disable-utf8proc make sudo make install -
tomasbasham revised this gist
Sep 19, 2017 . 1 changed file with 14 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,24 +3,30 @@ mkdir ~/tmux-install cd ~/tmux-install # Get the files curl -OL https://www.openssl.org/source/openssl-1.0.2l.tar.gz curl -OL https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz # Extract them tar xzf openssl-1.0.2l.tar.gz tar xzf tmux-2.3.tar.gz tar xzf libevent-2.0.22-stable.tar.gz # Compile openssl cd openssl-1.0.2l ./Configure darwin64-x86_64-cc --prefix=/usr/local --o make CFLAGS='-I/usr/local/ssl/include' make test sudo make install # Compile libevent cd ../libevent-2.0.22-stable ./configure make sudo make install # Compile tmux cd ../tmux-2.3 LDFLAGS="-L/usr/local/lib" CPPFLAGS="-I/usr/local/include" LIBS="-lresolv" ./configure --prefix=/usr/local make sudo make install -
Fi5t revised this gist
Dec 28, 2016 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,17 +7,17 @@ curl -OL https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz # Extract them tar xzf tmux-2.3.tar.gz tar xzf libevent-2.0.22-stable.tar.gz # Compile libevent cd libevent-2.0.22-stable ./configure --prefix=/opt make sudo make install # Compile tmux cd ../tmux-2.3 LDFLAGS="-L/opt/lib" CPPFLAGS="-I/opt/include" LIBS="-lresolv" ./configure --prefix=/opt make sudo make install -
Fi5t revised this gist
Dec 28, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ mkdir ~/tmux-install cd ~/tmux-install # Get the files curl -OL https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz # Extract them tar xzf tmux-1.5.tar.gz @@ -23,4 +23,4 @@ make sudo make install # Link it ln -s /opt/bin/tmux /usr/local/bin/tmux -
shrayas revised this gist
Jan 30, 2014 . 1 changed file with 1 addition and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,3 @@ # Create a directory mkdir ~/tmux-install cd ~/tmux-install @@ -24,6 +23,4 @@ make sudo make install # Link it ln -s /opt/bin/tmux /usr/bin/tmux -
shrayas created this gist
Jan 30, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ ``` # Create a directory mkdir ~/tmux-install cd ~/tmux-install # Get the files curl -OL http://downloads.sourceforge.net/tmux/tmux-1.5.tar.gz curl -OL http://downloads.sourceforge.net/project/levent/libevent/libevent-2.0/libevent-2.0.16-stable.tar.gz # Extract them tar xzf tmux-1.5.tar.gz tar xzf libevent-2.0.16-stable.tar.gz # Compile libevent cd libevent-2.0.16-stable ./configure --prefix=/opt make sudo make install # Compile tmux cd ../tmux-1.5 LDFLAGS="-L/opt/lib" CPPFLAGS="-I/opt/include" LIBS="-lresolv" ./configure --prefix=/opt make sudo make install # Link it ln -s /opt/bin/tmux /usr/bin/tmux ```