mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-01 23:24:37 +02:00
16 lines
314 B
Bash
Executable File
16 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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() {
|
|
true
|
|
}
|