repo/openssl/build

8 lines
264 B
Text
Raw Normal View History

2021-07-07 13:48:44 +03:00
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
2021-07-04 18:46:40 +03:00
chmod +x ./config
./config --prefix="/usr"
make
make install DESTDIR="$1"