Config.in 518 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_LTRIS
  2. bool "LTris"
  3. depends on BR2_USE_MMU # fork()
  4. select BR2_PACKAGE_SDL
  5. help
  6. LTris is a tetris clone, using SDL. It optionally requires
  7. SDL_mixer for audio support. A display with minimum 640x480
  8. resolution and a keyboard are recommended.
  9. http://lgames.sourceforge.net/index.php?project=LTris
  10. if BR2_PACKAGE_LTRIS
  11. config BR2_PACKAGE_LTRIS_AUDIO
  12. bool "audio support"
  13. default y
  14. select BR2_PACKAGE_SDL_MIXER
  15. help
  16. Activates audio support in LTris. Will add SDL_mixer.
  17. endif