FFmpeg-Builds/scripts.d/25-openssl.sh

51 lines
1.1 KiB
Bash
Raw Normal View History

2020-09-05 19:10:22 +00:00
#!/bin/bash
OPENSSL_REPO="https://github.com/openssl/openssl.git"
2021-08-25 15:55:04 +00:00
OPENSSL_COMMIT="OpenSSL_1_1_1l"
2020-09-05 19:10:22 +00:00
ffbuild_enabled() {
2020-09-05 19:50:11 +00:00
return 0
2020-09-05 19:10:22 +00:00
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$OPENSSL_REPO" "$OPENSSL_COMMIT" openssl
2020-09-05 19:10:22 +00:00
cd openssl
local myconf=(
threads
zlib
no-shared
enable-camellia
enable-ec
enable-srp
--prefix="$FFBUILD_PREFIX"
)
2020-09-27 20:10:05 +00:00
if [[ $TARGET == win64 ]]; then
2020-09-05 19:10:22 +00:00
myconf+=(
--cross-compile-prefix="$FFBUILD_CROSS_PREFIX"
mingw64
)
2020-09-27 20:10:05 +00:00
elif [[ $TARGET == win32 ]]; then
myconf+=(
--cross-compile-prefix="$FFBUILD_CROSS_PREFIX"
mingw
)
elif [[ $TARGET == linux64 ]]; then
myconf+=(
--cross-compile-prefix="$FFBUILD_CROSS_PREFIX"
linux-x86_64
)
2020-09-05 19:10:22 +00:00
else
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./Configure "${myconf[@]}"
2020-09-05 19:10:22 +00:00
2021-04-04 21:20:31 +00:00
sed -i -e "/^CFLAGS=/s|=.*|=${CFLAGS}|" -e "/^LDFLAGS=/s|=[[:space:]]*$|=${LDFLAGS}|" Makefile
2020-09-05 19:10:22 +00:00
2021-04-04 21:20:31 +00:00
make -j$(nproc)
make install_sw
2020-09-05 19:10:22 +00:00
}