mirror of
https://github.com/jellyfin/jellyfin-ffmpeg.git
synced 2026-09-02 21:03:08 +03:00
16 lines
273 B
Bash
Executable File
16 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_SKIP="1"
|
|
|
|
ffbuild_enabled() {
|
|
[[ $TARGET != linux* ]] && return -1
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
if [[ $TARGET == linux* ]]; then
|
|
rm "$FFBUILD_PREFIX"/lib/lib*.so* || true
|
|
rm "$FFBUILD_PREFIX"/lib/*.la || true
|
|
fi
|
|
}
|