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

76 lines
1.8 KiB
Bash
Raw Normal View History

2020-09-05 19:10:22 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/openssl/openssl.git"
2023-04-30 21:19:29 +00:00
SCRIPT_COMMIT="openssl-3.0.8"
SCRIPT_TAGFILTER="openssl-3.0.*"
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_dockerdl() {
default_dl "$SELF"
to_df "RUN git -C \"$SELF\" submodule update --init --recursive --depth=1"
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-05 19:10:22 +00:00
local myconf=(
threads
zlib
no-shared
enable-camellia
enable-ec
enable-srp
--prefix="$FFBUILD_PREFIX"
2023-04-30 21:19:29 +00:00
--libdir=lib
2020-09-05 19:10:22 +00:00
)
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
)
2022-05-09 22:15:31 +00:00
elif [[ $TARGET == linuxarm64 ]]; then
myconf+=(
--cross-compile-prefix="$FFBUILD_CROSS_PREFIX"
linux-aarch64
)
2020-09-05 19:10:22 +00:00
else
echo "Unknown target"
return -1
fi
2022-10-29 23:27:14 +00:00
export CFLAGS="$CFLAGS -fno-strict-aliasing"
export CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
# OpenSSL build system prepends the cross prefix itself
2023-04-30 21:19:29 +00:00
export CC="${CC/${FFBUILD_CROSS_PREFIX}/}"
export CXX="${CXX/${FFBUILD_CROSS_PREFIX}/}"
export AR="${AR/${FFBUILD_CROSS_PREFIX}/}"
export RANLIB="${RANLIB/${FFBUILD_CROSS_PREFIX}/}"
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
2023-04-30 21:19:29 +00:00
make -j$(nproc) build_sw
2021-04-04 21:20:31 +00:00
make install_sw
2020-09-05 19:10:22 +00:00
}
2023-04-30 21:19:29 +00:00
ffbuild_configure() {
[[ $TARGET == win* ]] && return 0
echo --enable-openssl
}