12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #!/bin/bash
- SCRIPT_REPO="https://gitlab.freedesktop.org/fontconfig/fontconfig.git"
- SCRIPT_COMMIT="e6eb25e5be9929e446bd61ba9aa572677eb26f41"
- ffbuild_enabled() {
- return 0
- }
- ffbuild_dockerbuild() {
- ./autogen.sh --noconf
- local myconf=(
- --prefix="$FFBUILD_PREFIX"
- --disable-docs
- --enable-libxml2
- --enable-iconv
- --disable-shared
- --enable-static
- )
- if [[ $TARGET == linux* ]]; then
- myconf+=(
- --sysconfdir=/etc
- --localstatedir=/var
- --host="$FFBUILD_TOOLCHAIN"
- )
- elif [[ $TARGET == win* ]]; then
- myconf+=(
- --host="$FFBUILD_TOOLCHAIN"
- )
- else
- echo "Unknown target"
- return -1
- fi
- ./configure "${myconf[@]}"
- make -j$(nproc)
- make install
- }
- ffbuild_configure() {
- echo --enable-fontconfig
- }
- ffbuild_unconfigure() {
- echo --disable-fontconfig
- }
|