Package Details: plasma6-applets-appgrid 1.9.1-1

Git Clone URL: https://aur.archlinux.org/plasma6-applets-appgrid.git (read-only, click to copy)
Package Base: plasma6-applets-appgrid
Description: A modern application launcher for KDE Plasma
Upstream URL: https://appgrid.xarbit.dev
Licenses: GPL-2.0-or-later
Submitter: xarbit
Maintainer: xarbit
Last Packager: xarbit
Votes: 6
Popularity: 2.84
First Submitted: 2026-03-15 10:38 (UTC)
Last Updated: 2026-06-15 15:35 (UTC)

Latest Comments

xarbit commented on 2026-03-16 21:01 (UTC)

@okunium sorry for that, i recreated the tag and thought I was fast enough :)

okunium commented on 2026-03-16 17:09 (UTC)

It's not building. I get this error: ==> ERROR: One or more files did not pass the validity check! error: failed to download sources for 'plasma6-applets-appgrid-1.4.0-1': error: packages failed to build: plasma6-applets-appgrid-1.4.0-1

HurricanePootis commented on 2026-03-16 02:32 (UTC)

Hi, your package is missing a lot of dependencies according to namcap. Here is a patch file that does the following:

  1. Properly assigns the missing dependencies
  2. Has the bare minimum makedepends required to actually build
  3. Removes -j$(nproc). This is improper, as it is up to the user to define how many jobs the require in `/etc/makepkg.conf.
  4. Set the CMake build type to None as described in the CMake package guideliens.
diff --git a/PKGBUILD b/PKGBUILD
index 7c24d38..c42cfb2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,20 +9,26 @@ license=('GPL-2.0-or-later')
 depends=(
     'plasma-workspace'
     'kservice'
-    'ki18n'
     'layer-shell-qt'
-)
-makedepends=(
-    'cmake'
-    'extra-cmake-modules'
+    'kcoreaddons'
+    'kdeclarative'
     'qt6-base'
+    'glibc'
     'qt6-declarative'
+    'kwindowsystem'
+    'libgcc'
+    'libstdc++'
+    'ksvg'
+    'kcmutils'
+    'kirigami'
+    'milou'
+    'kiconthemes'
     'libplasma'
-    'kpackage'
     'kio'
-    'kcoreaddons'
-    'kwindowsystem'
-    'gettext'
+)
+makedepends=(
+    'cmake'
+    'extra-cmake-modules'
 )
 provides=('appgrid')
 conflicts=('appgrid')
@@ -32,9 +38,9 @@ sha256sums=('4c9f8952e5986496a4d7e10b1f48bd73a10a387061941bbb5cf434b4139b2003')

 build() {
     cmake -B build -S "plasma6-applet-appgrid-${pkgver}" \
-        -DCMAKE_BUILD_TYPE=Release \
+        -DCMAKE_BUILD_TYPE=None \
         -DCMAKE_INSTALL_PREFIX=/usr
-    cmake --build build -j$(nproc)
+    cmake --build build
 }

 package() {