Config.in 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. config BR2_PACKAGE_PYTHON_PYGAME
  2. bool "python-pygame"
  3. select BR2_PACKAGE_SDL
  4. help
  5. Pygame is a cross-platfrom library designed to make it easy
  6. to write multimedia software, such as games, in
  7. Python. Pygame requires the Python language and SDL
  8. multimedia library.
  9. It can also make use of several other popular libraries.
  10. http://www.pygame.org/
  11. if BR2_PACKAGE_PYTHON_PYGAME
  12. config BR2_PACKAGE_PYTHON_PYGAME_IMAGE
  13. bool "pygame.image"
  14. select BR2_PACKAGE_SDL_IMAGE
  15. select BR2_PACKAGE_SDL_IMAGE_PNG
  16. select BR2_PACKAGE_SDL_IMAGE_JPEG
  17. help
  18. pygame module for loading, saving and transfering images.
  19. Will autoselect sdl_image with png and jpeg support.
  20. config BR2_PACKAGE_PYTHON_PYGAME_EXAMPLES
  21. bool "pygame.examples"
  22. help
  23. Include examples.
  24. Selecting this option adds about 1.5 MB to the target file
  25. system.
  26. config BR2_PACKAGE_PYTHON_PYGAME_FONT
  27. bool "pygame.font"
  28. select BR2_PACKAGE_SDL_TTF
  29. help
  30. pygame module for loading and rendering fonts.
  31. Will autoselect sdl_ttf.
  32. config BR2_PACKAGE_PYTHON_PYGAME_MIXER
  33. bool "pygame.mixer"
  34. select BR2_PACKAGE_SDL_MIXER
  35. help
  36. pygame module for loading and playing sounds.
  37. Will autoselect sdl_mixer.
  38. config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
  39. bool "pygame.scrap"
  40. depends on BR2_PACKAGE_SDL_X11
  41. help
  42. pygame module for clipboard support (X11 needed)
  43. endif