i try to install liri-meta-git from aur and get the following error:
Fehler: can't build liri-git-meta-0.9.0-6, deps not satisfied: liri-power-manager-git liri-session-git liri-shell-git liri-text-git
Fehler: kann Pakete nicht bauen: liri-shell-git-v0.9.0.r617.gb1cfe9c9-1 liri-session-git-r110.f26b173-1 liri-power-manager-git-r176.82662ac-1 liri-text-git-r324.404d021-1 liri-git-meta-0.9.0-6
liri-text-git was build successfully after changing "_gitroot="git://github.com/lirios/text.git" to "_gitroot="git+https://github.com/lirios/text.git" in PKGBUILD.
liri-power-manager-git depends on liri-session-git, which depends on liri-shell-git.
when building liri-shell-git i got this error-message:
CMake Error at /usr/share/LiriCMakeShared/modules/LiriBuild.cmake:189 (target_link_libraries):
Target "LiriShellHelper" links to:
PkgConfig::Libsystemd
but the target was not found. Possible reasons include:
* There is a typo in the target name.
* A find_package call is missing for an IMPORTED target.
* An ALIAS target is missing.
Call Stack (most recent call first):
src/helper/CMakeLists.txt:48 (liri_extend_target)
...
the same message for Target "LiriShellLockscreen"
in the README i found the possibility to add "-DFEATURE_enable_systemd:BOOL=OFF" to cmake command to disable systemd support.
so i cloned the aur-package and edited the PKGBUILD:
...
build() {
cd build
cmake ../${_gitname} \
-DCMAKE_BUILD_TYPE=Release \
-DFEATURE_enable_systemd:BOOL=OFF \
-DCMAKE_INSTALL_PREFIX=/usr \
...
now makepkg gives the following output:
...
-- The following features have been disabled:
* Coverage, Code coverage (gcc only)
* Liri::DevelopmentBuild, Build Liri Shell for development
* Liri::Systemd, Enable systemd support
* Shell::QtQuickCompiler, Build with QtQuick compiler
...
systemd is disabled but i get the same error as before.
what can i do?