mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-30 22:01:42 +01:00
and fix the import of the lib from python ctypes ffmpeg now depends on this, so keep the lib separate so it doesn't pull all the utils
16 lines
531 B
Diff
16 lines
531 B
Diff
import the named library, and not the bare symlink that is only in -dev
|
|
--
|
|
diff --git a/bindings/python/lilv.py b/bindings/python/lilv.py
|
|
index ab1ff75..524fab9 100644
|
|
--- a/bindings/python/lilv.py
|
|
+++ b/bindings/python/lilv.py
|
|
@@ -32,7 +32,7 @@ class _LilvLib:
|
|
elif sys.platform == "win32":
|
|
self.lib = CDLL("lilv-0.dll")
|
|
else:
|
|
- self.lib = CDLL("liblilv-0.so")
|
|
+ self.lib = CDLL("liblilv-0.so.0")
|
|
|
|
|
|
# Load lilv C library and define library global (which is populated below)
|