Config.in 692 B

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