aboutsummaryrefslogtreecommitdiffstats
path: root/math/py-cryptominisat/files/patch-setup.py.in
blob: 8175e08ef02d1244fc4bb246afa918849585e7df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--- setup.py.in.orig    2018-06-05 06:06:54 UTC
+++ setup.py.in
@@ -119,12 +119,12 @@ if platform.system() == 'Darwin':
 
 modules = dict(
     name = "pycryptosat",
-    sources = ["${CMAKE_CURRENT_SOURCE_DIR}/src/pycryptosat.cpp"],
+    sources = ["src/pycryptosat.cpp"],
     define_macros = [('LIBRARY_VERSION', '"' + __LIBRARY_VERSION__ + '"')],
-    extra_compile_args = cconf + ['-I${PROJECT_SOURCE_DIR}', '-I${PROJECT_BINARY_DIR}/cmsat5-src'],
+    extra_compile_args = cconf + ['-I/usr/local/include', '-I../cmsat5-src'],
     extra_link_args = extra_link_args,
     language = "c++",
-    library_dirs=['.', '${PROJECT_BINARY_DIR}/lib'],
+    library_dirs=['.', '/usr/local/lib'],
     runtime_library_dirs=['${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}'],
     libraries = ['cryptominisat5']
 )
@@ -150,7 +150,7 @@ setup(
     description = "Bindings to CryptoMiniSat {} (a SAT solver)".\
         format(__LIBRARY_VERSION__),
 #    py_modules = ['pycryptosat'],
-    long_description = open('${CMAKE_CURRENT_SOURCE_DIR}/README.rst').read(),
+    long_description = open('README.rst').read(),
     cmdclass={
         'test': TestCommand
     }