mirror of
https://github.com/Maks1mS/rg552-fancontrol-phosh-plugin.git
synced 2025-04-05 17:13:43 +03:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
5d1c9ad40a | |||
caaf453c80 | |||
2d5195957d | |||
69635cc0f1 | |||
|
ef57081f00 | ||
|
3663272063 | ||
5b59b42746 |
19
meson.build
19
meson.build
@ -14,17 +14,22 @@ i18n = import('i18n')
|
||||
# Dependencies
|
||||
gobject_dep = dependency('gobject-2.0', version: glib_ver_cmp)
|
||||
gtk_dep = dependency('gtk+-3.0', version: '>=3.22')
|
||||
libhandy_dep = dependency('libhandy-1', version: '>=1.1.90', fallback: ['libhandy', 'libhandy_dep'], default_options: ['introspection=disabled'])
|
||||
libnm_dep = dependency('libnm', version: '>=1.14')
|
||||
phosh_plugins_dep = dependency('phosh-plugins', required: true, method: 'pkg-config')
|
||||
libphosh_dep = dependency('libphosh-0.43', required: true, method: 'pkg-config')
|
||||
|
||||
# Detect libphosh API version
|
||||
# Due to the unstable API, the version changes frequently,
|
||||
# which makes it difficult to maintain in the package repository.
|
||||
result = run_command('bash', 'scripts/detect-libphosh-api-version.sh', check: true)
|
||||
|
||||
if result.returncode() != 0
|
||||
error(result.stderr())
|
||||
endif
|
||||
|
||||
libphosh_version = result.stdout().strip()
|
||||
libphosh_dep = dependency('libphosh-' + libphosh_version)
|
||||
|
||||
plugin_deps = [
|
||||
gobject_dep,
|
||||
gtk_dep,
|
||||
libhandy_dep,
|
||||
libnm_dep,
|
||||
phosh_plugins_dep,
|
||||
libphosh_dep
|
||||
]
|
||||
|
||||
|
18
scripts/detect-libphosh-api-version.sh
Normal file
18
scripts/detect-libphosh-api-version.sh
Normal file
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
pc_file=$(find "/usr/lib64/pkgconfig" -maxdepth 1 -type f -name "libphosh-*.pc" -print -quit)
|
||||
|
||||
if [ -z "$pc_file" ]; then
|
||||
echo "File libphosh-*.pc not found."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
version=$(basename "$pc_file" | sed -E 's/^libphosh-([0-9.]+)\.pc$/\1/')
|
||||
|
||||
if [ -z "$version" ]; then
|
||||
echo "Can't detect version of $pc_file."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo $version
|
||||
exit 0
|
Loading…
Reference in New Issue
Block a user