Config.in 1.5 KB

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