mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 01:30:40 +03:00
24 lines
656 B
Bash
24 lines
656 B
Bash
|
#!/bin/sh
|
||
|
set -eux
|
||
|
|
||
|
download_openssl () {
|
||
|
if [ ! -f "download-cache/openssl-${OPENSSL_VERSION}.tar.gz" ]; then
|
||
|
wget -P download-cache/ \
|
||
|
"https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
build_openssl () {
|
||
|
if [ "$(cat ${PREFIX}/.openssl-version)" != "${OPENSSL_VERSION}" ]; then
|
||
|
tar zxf "download-cache/openssl-${OPENSSL_VERSION}.tar.gz"
|
||
|
cd "openssl-${OPENSSL_VERSION}/"
|
||
|
./config shared --prefix="${PREFIX}" --openssldir="${PREFIX}" -DPURIFY
|
||
|
make all install_sw
|
||
|
echo "${OPENSSL_VERSION}" > "${PREFIX}/.openssl-version"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
|
||
|
download_openssl
|
||
|
build_openssl
|