mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-30 06:34:32 +02:00
28 lines
427 B
Bash
Executable File
28 lines
427 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/madler/zlib.git"
|
|
SCRIPT_COMMIT="0f51fb4933fc9ce18199cb2554dacea8033e7fd3"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--static
|
|
)
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-zlib
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-zlib
|
|
}
|