tmate-io_tmate-ssh-server/install_libssh_travis.sh
Steve Wills 8519292881 Fix Travis CI build (#47)
* try to fix travis build

* try to use bionic somehow

* try again to fix travis

* need libssh for travis too

* install newer libssh too

* be less verbose in travis script
2018-11-30 11:06:01 -05:00

10 lines
180 B
Bash
Executable File

#!/bin/sh
wget 'https://www.libssh.org/files/0.8/libssh-0.8.5.tar.xz'
tar -xJf libssh-0.8.5.tar.xz
mkdir libssh-build
cd libssh-build
cmake ../libssh-0.8.5
make
sudo make install