1.2.1. Base package

Start python section to spkgs/sdl.py[1 /1 ]
     1: #line 100 "./lpsrc/flx_sdl.pak"
     2: execfile("cpkgs"+os.sep+"target"+os.sep+"sdl.py")
     3: if HAVE_SDL:
     4:   # flags are compiler natives switches
     5:   # not to be confused with platform independent lists
     6:   # of libraries, include files, paths, etc
     7:   cflags = SDL_CFLAGS
     8:   dflags = SDL_LIBS
     9:   sflags = SDL_STATIC_LIBS
    10: 
    11:   pkg_requires = ['faio']
    12:   lib_requires = ['libfaio', 'libdemux','libflx_pthread','libflx']
    13:   demos = glob.glob(os.path.join('demos', 'sdl', '*.flx'))
    14:   demos.sort()
    15: 
    16: iscr_source = ['lpsrc/flx_sdl.pak']
    17: build_macro = "SDL"
    18: weaver_directory = "doc/sdl/"
End python section to spkgs/sdl.py[1]