Config.in 721 B

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