mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
22 lines
529 B
Bash
Executable File
22 lines
529 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/util/macros.git"
|
|
SCRIPT_COMMIT="91ece2a5f6408d34074522c8588ef1c53478daa0"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET != linux* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerlayer() {
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/. \$FFBUILD_PREFIX"
|
|
to_df "COPY --from=${SELFLAYER} \$FFBUILD_PREFIX/share/aclocal/. /usr/share/aclocal"
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
autoreconf -i
|
|
./configure --prefix="$FFBUILD_PREFIX"
|
|
make -j"$(nproc)"
|
|
make install
|
|
}
|