ports/graphics/py-sane/patches/patch-setup_py

14 lines
384 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: setup.py
--- setup.py.orig
+++ setup.py
@@ -1,7 +1,8 @@
import setuptools
sane = setuptools.Extension('_sane',
- include_dirs=[],
+ include_dirs=[ '${LOCALBASE}/include' ],
+ library_dirs=['${LOCALBASE}/lib'],
libraries=['sane'],
define_macros=[],
extra_compile_args=[],