You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
b3ebe6212d
git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@111115 d073be05-634f-4543-b044-5fe20cf6d1d6
19 lines
439 B
Diff
19 lines
439 B
Diff
--- /dev/null 2013-09-15 18:09:11.000000000 +0400
|
|
+++ setup.py 2013-09-15 18:10:23.000000000 +0400
|
|
@@ -0,0 +1,15 @@
|
|
+from distutils.core import setup, Extension
|
|
+
|
|
+setup(
|
|
+ name='freeling',
|
|
+ version='3.1',
|
|
+ ext_modules=[
|
|
+ Extension(
|
|
+ '_freeling',
|
|
+ ['freeling_pythonAPI.i'],
|
|
+ swig_opts=['-c++'],
|
|
+ libraries=['freeling'],
|
|
+ )
|
|
+ ],
|
|
+ py_modules=['freeling'],
|
|
+)
|