Config.in 449 B

1234567891011121314
  1. config BR2_PACKAGE_PYTHON_PYPARTED
  2. bool "python-pyparted"
  3. depends on BR2_ENABLE_LOCALE # parted
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # parted
  5. depends on BR2_USE_WCHAR
  6. select BR2_PACKAGE_PARTED
  7. help
  8. Python bindings for GNU parted (libparted).
  9. https://github.com/rhinstaller/pyparted
  10. comment "pyparted needs a toolchain w/ locale, wchar, gcc >= 5"
  11. depends on !BR2_ENABLE_LOCALE || !BR2_USE_WCHAR || \
  12. !BR2_TOOLCHAIN_GCC_AT_LEAST_5