This file contains 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 | |
DIR=$PWD | |
yum groupinstall -y "Development Tools" | |
yum install -y make gcc perl wget zlib-devel | |
#Compile static version of libressl | |
export STATICLIBSSL=/tmp/staticlibssl | |
LIBRESSL=libressl-2.4.2 |