I'm trying to build synctex to use it in a flatpak package.
If I understand correctly, the stable branch is currently the 2024 branch, which has two problems:
- The meson.build file states that it's version 1.3, but 1.3 seems too old. In fact it should be 1.22, shouldn't?
- The meson syntax is probably outdated so the built library results undefined. I had to patch meson.build:
diff --git a/meson.build b/meson.build
index a940709..e6b3c5a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('synctex', 'c')
+project('synctex', 'c', version: '1.22')
version = '1.3'
I'm trying to build synctex to use it in a flatpak package.
If I understand correctly, the stable branch is currently the 2024 branch, which has two problems: