repo/openssl/build
2021-07-07 12:48:44 +02:00

7 lines
264 B
Text
Executable file

wget -O ${temp_location}/openssl/openssl.tar.gz https://www.openssl.org/source/openssl-3.0.0-beta1.tar.gz
tar -xf ${temp_location}/openssl/openssl.tar.gz
cd ${temp_location}/openssl/openssl
chmod +x ./config
./config --prefix="/usr"
make
make install DESTDIR="$1"