mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 14:08:45 -04:00
* Greatly improve our ffmpeg build * Remove not needed deps * Remove libpng from windows ffmpeg build
25 lines
442 B
Bash
25 lines
442 B
Bash
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/strukturag/libde265.git"
|
|
SCRIPT_TAG="v1.0.11"
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_TAG" libde265
|
|
cd libde265
|
|
|
|
autoreconf -i
|
|
|
|
local myconf=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
--disable-dec265
|
|
--disable-sherlock265
|
|
)
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j"$(nproc)"
|
|
make install
|
|
}
|