1config 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 10 http://lgames.sourceforge.net/index.php?project=LTris 11 12if BR2_PACKAGE_LTRIS 13 14config BR2_PACKAGE_LTRIS_AUDIO 15 bool "audio support" 16 default y 17 select BR2_PACKAGE_SDL_MIXER 18 help 19 Activates audio support in LTris. Will add SDL_mixer. 20 21endif 22