44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Maintainer: Christian Schendel <doppelhelix@gmail.com>
|
|
# Contributor: Bouteiller a2n Alan <a2n.dev@pm.me>
|
|
|
|
pkgname="plasma6-applets-arch-update-notifier"
|
|
pkgver=6.3.2
|
|
pkgrel=2
|
|
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
|
|
kirigami
|
|
konsole
|
|
ksvg
|
|
libplasma
|
|
pacman-contrib
|
|
plasma5support
|
|
plasma-workspace
|
|
qt6-declarative
|
|
)
|
|
makedepends=(
|
|
git
|
|
)
|
|
optdepends=(
|
|
"paru: paru support"
|
|
"yay: yay support - supported by default"
|
|
)
|
|
b2sums=('04f6c5208ebe102ddf823d2910c34516b84c1398a226d3f81d431cbb54934f47dbf0e54a72f436ec3af2060ef56032096ef5bab43bd242bb5ade1d27ef411639')
|
|
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:
|