35 lines
638 B
Bash
Executable file
35 lines
638 B
Bash
Executable file
#!/bin/bash
|
|
|
|
OGG_REPO="https://github.com/xiph/ogg.git"
|
|
OGG_COMMIT="3069cc2bb44160982cdb21b2b8f0660c76b17572"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$OGG_REPO" "$OGG_COMMIT" ogg
|
|
cd ogg
|
|
|
|
./autogen.sh
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
--with-pic
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|