mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
11 lines
358 B
Python
11 lines
358 B
Python
#!/usr/bin/python
|
|
|
|
from distutils.core import setup, Extension
|
|
|
|
m = Extension('linphone',
|
|
include_dirs = ['/home/ghislain/linphone-install/include'],
|
|
libraries = ['linphone'],
|
|
library_dirs = ['/home/ghislain/linphone-install/lib'],
|
|
sources = ['linphone.c']
|
|
)
|
|
setup(name = 'Linphone', version = '1.0', description = 'Linphone package', ext_modules = [m])
|