From 283913826a7289f534ecf6a8a9392cba963697a7 Mon Sep 17 00:00:00 2001 From: nulano Date: Sat, 2 Jan 2021 15:12:41 +0100 Subject: [PATCH] add wheel build options to vendor raqm, fribidi shim --- config.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.sh b/config.sh index 5d964c6c7..2ae0df059 100644 --- a/config.sh +++ b/config.sh @@ -94,6 +94,14 @@ function pre_build { done } +function pip_wheel_cmd { + local abs_wheelhouse=$1 + pip wheel $(pip_opts) \ + --global-option build_ext --global-option --enable-raqm \ + --global-option --vendor-raqm --global-option --vendor-fribidi \ + -w $abs_wheelhouse --no-deps . +} + function run_tests_in_repo { # Run Pillow tests from within source repo python3 selftest.py