adding a distutils setup file for python-libburn
This commit is contained in:
parent
fd0503f9a1
commit
63dc525ec7
15
experimental/python-libburn/setup.py
Normal file
15
experimental/python-libburn/setup.py
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
|
||||||
|
from distutils.core import setup, Extension
|
||||||
|
|
||||||
|
setup(name = "python-libburn",
|
||||||
|
version = "0.0.1",
|
||||||
|
description = "Python bindings to libburn",
|
||||||
|
ext_modules = [Extension("pyburn",
|
||||||
|
["pyburn.cpp"],
|
||||||
|
libraries=['libburn'],
|
||||||
|
include_dirs=['/usr/include/libburn'], # FIXME: make this more
|
||||||
|
# portable
|
||||||
|
)]
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user