Created
December 15, 2014 20:18
-
-
Save anthonywu/0541ab8aeeec6bb3aa43 to your computer and use it in GitHub Desktop.
Compile OpenConnect
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 characters
#!/bin/bash -e | |
sudo apt-get install gcc make pkg-config openssl libgnutls28 libgnutls28-dev libxml++2.6-dev | |
cd ~ | |
target=openconnect | |
wget ftp://ftp.infradead.org/pub/openconnect/openconnect-4.99.tar.gz ${target}.tar.gz | |
tar -xvf ${target}.tar.gz | |
cd $target | |
./configure --with-gnutls --disable-nls | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment