]> git.sesse.net Git - vlc/blob - python/setup.py
* modules/gui/wxwindows/*: few modifications to the strings.
[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'],
9                 library_dirs = ['../lib', '../modules/codec/ffmpeg', 
10                                 FFMPEG_DIR + '/libavcodec'])
11
12
13 setup (name = 'PackageName',
14        version = '1.0',
15        description = 'This is a demo package',
16        ext_modules = [vlc])
17