1config BR2_PACKAGE_LBREAKOUT2 2 bool "LBreakout2" 3 select BR2_PACKAGE_SDL 4 select BR2_PACKAGE_LIBPNG 5 help 6 LBreakout2 is the successor to LBreakout, a breakout-style 7 arcade game in the manner of Arkanoid. Requires SDL, libpng, 8 and optionnally SDL_mixer/SDL_net. 9 A display with minimum 640x480 resolution, a keyboard and a 10 mouse are recommanded. 11 12 http://lgames.sourceforge.net/index.php?project=LBreakout2 13 14if BR2_PACKAGE_LBREAKOUT2 15 16config BR2_PACKAGE_LBREAKOUT2_AUDIO 17 bool "audio support" 18 default y 19 select BR2_PACKAGE_SDL_MIXER 20 help 21 Activates audio support in LBreakout2. Will add SDL_mixer. 22 23config BR2_PACKAGE_LBREAKOUT2_NET 24 bool "network support" 25 default y 26 select BR2_PACKAGE_SDL_NET 27 help 28 Activates network support LBreakout2. Will add SDL_net. 29 30endif 31