12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/bin/bash
- SCRIPT_REPO="https://bitbucket.org/the-sekrit-twc/zimg.git"
- SCRIPT_COMMIT="034b7cf5339e576080e61fd53f566387687ff4d6"
- ffbuild_enabled() {
- return 0
- }
- ffbuild_dockerdl() {
- default_dl .
- echo "git submodule update --init --recursive --depth=1"
- }
- ffbuild_dockerbuild() {
- ./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
- }
- ffbuild_configure() {
- echo --enable-libzimg
- }
- ffbuild_unconfigure() {
- echo --disable-libzimg
- }
|