Package Details: libnick 2025.7.6-1

Git Clone URL: https://aur.archlinux.org/libnick.git (read-only, click to copy)
Package Base: libnick
Description: A cross-platform base for native Nickvision applications
Upstream URL: https://github.com/NickvisionApps/libnick
Licenses: MIT
Submitter: mhdi
Maintainer: mhdi
Last Packager: mhdi
Votes: 0
Popularity: 0.000000
First Submitted: 2024-11-20 11:31 (UTC)
Last Updated: 2025-08-16 16:43 (UTC)

Dependencies (5)

Required by (2)

Sources (1)

Latest Comments

hurufu commented on 2025-06-24 12:22 (UTC)

Please unset VCKPKG_ROOT variable in build() function. If user happens to have this variable in their environment then compilation might fail.

Something like this will do the trick:

diff --git a/PKGBUILD b/PKGBUILD
index 91429ac..c61abcd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,6 +20,7 @@ prepare() {
 }

 build() {
+    env -uVCPKG_ROOT \
     cmake -B build -S "${pkgname}-${pkgver}" \
         -DCMAKE_BUILD_TYPE=Release \
         -DCMAKE_INSTALL_PREFIX=/usr \