Skip to content

Commit

Permalink
Disable freetype
Browse files Browse the repository at this point in the history
  • Loading branch information
IsabelParedes committed Jun 19, 2024
1 parent c4b44e6 commit cc1ad79
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
30 changes: 28 additions & 2 deletions recipes/recipes_emscripten/cairo/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set -ex

meson_config_args=(
-Dfontconfig=enabled
-Dfreetype=enabled
-Dfreetype=disabled
-Dglib=enabled
-Dpng=disabled
-Dxlib=disabled
-Dxlib-xcb=disabled
-Dxcb=disabled
-Dspectre=disabled
-Dzlib=disabled
-Dtests=disabled
)

Expand All @@ -26,3 +26,29 @@ meson setup builddir \
--cross-file=$RECIPE_DIR/emscripten.meson.cross
ninja -v -C builddir -j ${CPU_COUNT}
ninja -C builddir install -j ${CPU_COUNT}



# bash autogen.sh
# chmod +x ./configure

# export ax_cv_c_float_words_bigendian=no

# emconfigure ./configure \
# --prefix="${PREFIX}" \
# --enable-ft \
# --enable-ps \
# --enable-pdf \
# --enable-svg \
# --disable-gtk-doc \
# --enable-xcb-shm

# emmake make -j${CPU_COUNT}
# # FAIL: check-link on OS X
# # Hangs for > 10 minutes on Linux
# #make check -j${CPU_COUNT}
# emmake make install -j${CPU_COUNT}

# # Remove any new Libtool files we may have installed. It is intended that
# # conda-build will eventually do this automatically.
# find $PREFIX -name '*.la' -delete
1 change: 1 addition & 0 deletions recipes/recipes_emscripten/cairo/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ requirements:
- pixman
- lzo
- expat
- zlib

tests:
- script:
Expand Down

0 comments on commit cc1ad79

Please sign in to comment.