2025-09-03 21:14:02 +02:00
|
|
|
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
|
|
|
# Contributor: Bouteiller a2n Alan <a2n.dev@pm.me>
|
|
|
|
|
|
|
|
|
|
pkgname="plasma6-applets-arch-update-notifier"
|
2025-12-22 21:28:03 +01:00
|
|
|
pkgver=6.4.1
|
|
|
|
|
pkgrel=1
|
2025-09-03 21:14:02 +02:00
|
|
|
pkgdesc="KDE plasmoid that lets you know when arch updates are required. Takes all repo's into account (core, extra, aur, ...)."
|
|
|
|
|
arch=("any")
|
|
|
|
|
url="https://github.com/bouteillerAlan/archupdate"
|
|
|
|
|
license=(
|
|
|
|
|
GPL-3.0-or-later
|
|
|
|
|
)
|
|
|
|
|
source=("$pkgname-$pkgver::git+$url.git#tag=v${pkgver}?signed")
|
|
|
|
|
depends=(
|
|
|
|
|
kdeclarative
|
|
|
|
|
kdialog
|
2025-12-22 21:28:03 +01:00
|
|
|
kiconthemes
|
2025-09-03 21:14:02 +02:00
|
|
|
kirigami
|
|
|
|
|
konsole
|
|
|
|
|
ksvg
|
|
|
|
|
libplasma
|
|
|
|
|
pacman-contrib
|
|
|
|
|
plasma5support
|
|
|
|
|
plasma-workspace
|
|
|
|
|
qt6-declarative
|
|
|
|
|
)
|
|
|
|
|
makedepends=(
|
|
|
|
|
git
|
|
|
|
|
)
|
|
|
|
|
optdepends=(
|
|
|
|
|
"paru: paru support"
|
|
|
|
|
"yay: yay support - supported by default"
|
|
|
|
|
)
|
2025-12-22 21:28:03 +01:00
|
|
|
b2sums=('9cb173a9319cc14f71166f118ce9e24c170a29cc2967f13b16dac0b0de4765b4e750a8d38248a9324845c5774166d5967fff4923e266cbcaa654845b7efe22a4')
|
2025-09-03 21:14:02 +02:00
|
|
|
validpgpkeys=(
|
|
|
|
|
6A2ECC8A396F8A943A109A1E0F11C2A6BF79111E # Bouteiller a2n Alan <a2n.dev@pm.me>, retrieved from https://github.com/bouteillerAlan.gpg
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
package() {
|
|
|
|
|
local plasmoidName="a2n.archupdate.plasmoid"
|
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
find "$plasmoidName" -type f -exec install -Dm 644 "{}" "$pkgdir/usr/share/plasma/plasmoids/{}" \;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|