Fails to build due to missing qt6-5compat dependency.
-- Could NOT find Qt6Core5Compat (missing: Qt6Core5Compat_DIR)
CMake Error at CMakeLists.txt:139 (find_package):
Found package configuration file:
/usr/lib/cmake/Qt6/Qt6Config.cmake
but it set Qt6_FOUND to FALSE so package "Qt6" is considered to be NOT
FOUND. Reason given by package:
Failed to find required Qt component "Core5Compat".
Expected Config file at
"/usr/lib/cmake/Qt6Core5Compat/Qt6Core5CompatConfig.cmake" does NOT exist
Configuring with --debug-find-pkg=Qt6Core5Compat might reveal details why
the package was not found.
Configuring with -DQT_DEBUG_FIND_PACKAGE=ON will print the values of some
of the path variables that find_package uses to try and find the package.
Got an error while updating to version 5.6.16-1:
==> Validating source files with sha256sums...
noson-app ... fatal: not a valid object name: 5.6.16
==> ERROR: One or more files did not pass the validity check!
This is because the 5.6.16 version is not available on the github page. The tag should be 5.6.16+2 which is available.
I was able to build and install the new version by changing the the pkg version in PKGBUILD:
pkgver=5.6.16+2
and regenerating the checksum (and remove the old one) by running
makepkg -g >> PKGBUILD
After that I was able to build and install noson by running:
paru -Bi noson-app
Hi, would you mind supporting other build backends as well (e.g. ninja)? The needed changes would be the following patch:
From 194f6967a099548b02ebc285ef02ff4aadec96ac Mon Sep 17 00:00:00 2001
From: Freakness109 <freakness109@gmail.com>
Date: Sat, 23 Aug 2025 19:54:19 +0200
Subject: [PATCH] Support alternative build backends
---
PKGBUILD | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/PKGBUILD b/PKGBUILD
index f80753a..4981578 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -19,10 +19,10 @@ build() {
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib
- make
+ cmake --build .
}
package() {
cd "$srcdir/build"
- make DESTDIR="$pkgdir/" install
+ DESTDIR="$pkgdir/" cmake --install .
}
--
2.50.1
Thanks :)
Some issue still present like pkgver() and sums check
This has been fixed with 5.6.9