FFmpeg-Builds/scripts.d/50-x264.sh

53 lines
915 B
Bash
Raw Permalink Normal View History

2020-09-01 22:07:54 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/mirror/x264.git"
2023-02-12 13:40:12 +00:00
SCRIPT_COMMIT="eaa68fad9e5d201d42fde51665f2d137ae96baf0"
2020-09-01 22:07:54 +00:00
2020-09-02 16:07:59 +00:00
ffbuild_enabled() {
2021-06-20 19:59:48 +00:00
[[ $VARIANT == lgpl* ]] && return -1
2020-09-01 22:07:54 +00:00
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2020-09-03 14:56:24 +00:00
local myconf=(
--disable-cli
--enable-static
--enable-pic
--disable-lavf
--disable-swscale
--prefix="$FFBUILD_PREFIX"
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-03 14:56:24 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
--cross-prefix="$FFBUILD_CROSS_PREFIX"
)
else
2020-09-01 22:07:54 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-01 22:07:54 +00:00
}
2020-09-02 16:07:59 +00:00
ffbuild_configure() {
echo --enable-libx264
}
2020-09-03 19:03:34 +00:00
ffbuild_unconfigure() {
2020-09-03 17:32:54 +00:00
echo --disable-libx264
}
2020-09-02 16:07:59 +00:00
ffbuild_cflags() {
return 0
}
ffbuild_ldflags() {
return 0
}