Skip to content

Instantly share code, notes, and snippets.

@anthonywu
Created December 15, 2014 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonywu/0541ab8aeeec6bb3aa43 to your computer and use it in GitHub Desktop.
Save anthonywu/0541ab8aeeec6bb3aa43 to your computer and use it in GitHub Desktop.
Compile OpenConnect
#!/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