1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| # Assuming the same version from last session, access the created folder
# and run the configure script to check if you have everything needed to
# build the application, builds the source code with make and then moves
# all the needed files for the application to the appropriate system
# directories with the make install command
cd tmux-${VERSION}
./configure
make
sudo make install
# Now cleanup the mess and happy hack! =)
cd -
sudo rm -rf /usr/local/src/tmux-\*
sudo mv tmux-${VERSION} /usr/local/src
|