Skip to content

Commit

Permalink
Add script for building and installing mbedtls
Browse files Browse the repository at this point in the history
Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
  • Loading branch information
mattock committed Nov 20, 2017
1 parent 34c9259 commit 7821ca1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions install-mbedtls.sh
@@ -0,0 +1,11 @@
#!/bin/sh

VERSION="2.6.0"
BASENAME="mbedtls-$VERSION"
TARBALL="$BASENAME-gpl.tgz"

curl -O https://tls.mbed.org/download/$TARBALL
tar -zxf $TARBALL
cd $BASENAME
make
make install

0 comments on commit 7821ca1

Please sign in to comment.