Fix tmux sourcecode url to github

The sourceforge project of tmux seems to have been removed.  So,
wgetting from github releases instead of sourceforge.
This commit is contained in:
Yuki Inoue
2016-04-28 22:08:30 +09:00
parent 3563c3d975
commit fdbb1704e0

View File

@@ -8,7 +8,7 @@ env:
before_install:
- sudo apt-get update
- sudo apt-get install -y bc build-essential libevent-dev libncurses5-dev
- wget http://downloads.sourceforge.net/tmux/tmux-${TMUX_VERSION}.tar.gz
- wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz
- tar -zxf tmux-${TMUX_VERSION}.tar.gz
- cd tmux-${TMUX_VERSION}
- ./configure && make && sudo make install