Config.in 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. config BR2_PACKAGE_PYTHON_PYGAME
  2. bool "python-pygame"
  3. depends on BR2_PACKAGE_PYTHON
  4. select BR2_PACKAGE_SDL
  5. help
  6. Pygame is a cross-platfrom library designed to make it easy to write
  7. multimedia software, such as games, in Python. Pygame requires the
  8. Python language and SDL 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 system.
  25. config BR2_PACKAGE_PYTHON_PYGAME_FONT
  26. bool "pygame.font"
  27. select BR2_PACKAGE_SDL_TTF
  28. help
  29. pygame module for loading and rendering fonts.
  30. Will autoselect sdl_ttf.
  31. config BR2_PACKAGE_PYTHON_PYGAME_MIXER
  32. bool "pygame.mixer"
  33. select BR2_PACKAGE_SDL_MIXER
  34. help
  35. pygame module for loading and playing sounds.
  36. Will autoselect sdl_mixer.
  37. config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
  38. bool "pygame.mixer.music"
  39. depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
  40. help
  41. pygame module for controlling streamed audio
  42. config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
  43. bool "pygame.scrap"
  44. depends on BR2_PACKAGE_SDL_X11
  45. help
  46. pygame module for clipboard support (X11 needed)
  47. endif