]> git.sesse.net Git - vlc/blob - python/setup.py
* Fixed mouse leave notification
[vlc] / python / setup.py
1 from distutils.core import setup, Extension
2
3 FFMPEG_DIR = '/home/cyril/ffmpeg'
4
5 vlc = Extension('vlc',
6                 sources = ['vlcmodule.c'],
7                 libraries = ['vlc', 'rt', 'dl' , 'pthread', 'ffmpeg', 'm',
8                              'avcodec','mpeg_video','idct','idctclassic',
9                              'motion','memcpymmx','idctmmx','motionmmx',
10                              'i420_rgb_mmx','i420_yuy2_mmx','i420_ymga_mmx',
11                              'i422_yuy2_mmx','memcpymmxext','idctmmxext',
12                              'motionmmxext','memcpy3dn'],
13                 library_dirs = ['/usr/local/lib/vlc', '../lib', 
14 '../modules/codec/ffmpeg',
15                                 FFMPEG_DIR + '/libavcodec'])
16
17
18 setup (name = 'PackageName',
19        version = '1.0',
20        description = 'This is a demo package',
21        ext_modules = [vlc])
22