Skip to content
Snippets Groups Projects
Verified Commit 1214f37c authored by sunpoet's avatar sunpoet
Browse files

archivers/py-brotli: Fix build

- Fix module name case: We should loosen PEP 517 installation for this
- Fix LOCALBASE substitution
parent 2920ddff
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,15 @@
major = read_define(version_file_path, 'BROTLI_VERSION_MAJOR')
minor = read_define(version_file_path, 'BROTLI_VERSION_MINOR')
patch = read_define(version_file_path, 'BROTLI_VERSION_PATCH')
@@ -128,7 +128,7 @@ class BuildExt(build_ext):
target_lang=language)
-NAME = 'Brotli'
+NAME = 'brotli'
VERSION = get_version()
@@ -177,96 +177,17 @@ EXT_MODULES = [
'_brotli',
sources=[
......@@ -103,13 +112,13 @@
],
include_dirs=[
- 'c/include',
+ '/usr/local/include',
+ '%%LOCALBASE%%/include',
+ ],
+ libraries=[
+ 'brotlicommon', 'brotlidec', 'brotlienc',
+ ],
+ library_dirs=[
+ '/usr/local/lib',
+ '%%LOCALBASE%%/lib',
]),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment