xref: /OK3568_Linux_fs/buildroot/package/ltris/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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