forked from alnux/repo
7 lines
264 B
Text
Executable file
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"
|