Config.in 634 B

123456789101112131415161718
  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. select BR2_PACKAGE_HOST_SWIG
  7. select BR2_PACKAGE_FREETYPE
  8. select BR2_PACKAGE_MUPDF
  9. select BR2_PACKAGE_PYTHON3_ZLIB # runtime
  10. help
  11. Python bindings for the PDF rendering library MuPDF.
  12. https://github.com/pymupdf/PyMuPDF
  13. comment "python-pymupdf needs a toolchain w/ C++, gcc >= 4.9"
  14. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  15. depends on !BR2_INSTALL_LIBSTDCPP || \
  16. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9