Config.in 721 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_PYTHON_PYMUPDF
  2. bool "python-pymupdf"
  3. depends on BR2_INSTALL_LIBSTDCPP # mupdf -> harfbuzz
  4. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # mupdf -> harfbuzz
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # mupdf -> harfbuzz
  6. depends on !BR2_STATIC_LIBS # runtime failure
  7. select BR2_PACKAGE_HOST_SWIG
  8. select BR2_PACKAGE_FREETYPE
  9. select BR2_PACKAGE_MUPDF
  10. select BR2_PACKAGE_PYTHON3_ZLIB # runtime
  11. help
  12. Python bindings for the PDF rendering library MuPDF.
  13. https://github.com/pymupdf/PyMuPDF
  14. comment "python-pymupdf needs a toolchain w/ C++, gcc >= 4.9, dynamic library"
  15. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  16. depends on !BR2_INSTALL_LIBSTDCPP || \
  17. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  18. BR2_STATIC_LIBS