We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7116d6c commit e24c341Copy full SHA for e24c341
build-ffmpeg
@@ -830,6 +830,11 @@ fi
830
## FFmpeg
831
##
832
833
+EXTRA_VERSION=""
834
+if [[ "$OSTYPE" == "darwin"* ]]; then
835
+ EXTRA_VERSION="${FFMPEG_VERSION}"
836
+fi
837
+
838
build "ffmpeg" "$FFMPEG_VERSION"
839
download "https://github.com/FFmpeg/FFmpeg/archive/refs/heads/release/$FFMPEG_VERSION.tar.gz" "FFmpeg-release-$FFMPEG_VERSION.tar.gz"
840
# shellcheck disable=SC2086
@@ -848,7 +853,7 @@ download "https://github.com/FFmpeg/FFmpeg/archive/refs/heads/release/$FFMPEG_VE
848
853
--pkgconfigdir="$WORKSPACE/lib/pkgconfig" \
849
854
--pkg-config-flags="--static" \
850
855
--prefix="${WORKSPACE}" \
851
- --extra-version="${FFMPEG_VERSION}"
856
+ --extra-version="${EXTRA_VERSION}"
852
857
858
execute make -j $MJOBS
859
execute make install
0 commit comments