Blame view

buildroot/buildroot-2016.08.1/package/python-pygame/Config.in 1.48 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  config BR2_PACKAGE_PYTHON_PYGAME
  	bool "python-pygame"
  	select BR2_PACKAGE_SDL
  	help
  	  Pygame is a cross-platfrom library designed to make it easy to write
  	  multimedia software, such as games, in Python. Pygame requires the
  	  Python language and SDL multimedia library.
  	  It can also make use of several other popular libraries.
  
  	  http://www.pygame.org/
  
  if BR2_PACKAGE_PYTHON_PYGAME
  config BR2_PACKAGE_PYTHON_PYGAME_IMAGE
  	bool "pygame.image"
  	select BR2_PACKAGE_SDL_IMAGE
  	select BR2_PACKAGE_SDL_IMAGE_PNG
  	select BR2_PACKAGE_SDL_IMAGE_JPEG
  	help
  	  pygame module for loading, saving and transfering images.
  	  Will autoselect sdl_image with png and jpeg support.
  
  config BR2_PACKAGE_PYTHON_PYGAME_EXAMPLES
  	bool "pygame.examples"
  	help
  	  Include examples.
  	  Selecting this option adds about 1.5 MB to the target file system.
  
  config BR2_PACKAGE_PYTHON_PYGAME_FONT
  	bool "pygame.font"
  	select BR2_PACKAGE_SDL_TTF
  	help
  	  pygame module for loading and rendering fonts.
  	  Will autoselect sdl_ttf.
  
  config BR2_PACKAGE_PYTHON_PYGAME_MIXER
  	bool "pygame.mixer"
  	select BR2_PACKAGE_SDL_MIXER
  	help
  	  pygame module for loading and playing sounds.
  	  Will autoselect sdl_mixer.
  
  config BR2_PACKAGE_PYTHON_PYGAME_MIXER_MUSIC
  	bool "pygame.mixer.music"
  	depends on BR2_PACKAGE_PYTHON_PYGAME_MIXER
  	help
  	  pygame module for controlling streamed audio
  
  config BR2_PACKAGE_PYTHON_PYGAME_SCRAP
  	bool "pygame.scrap"
  	depends on BR2_PACKAGE_SDL_X11
  	help
  	  pygame module for clipboard support (X11 needed)
  
  endif