blob: 00b3c797ac7d79748f7bcf1e1afb25a8e4f3b546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: Bouteiller a2n Alan <a2n.dev@pm.me>
_plasmoidName="a2n.blur"
pkgname=plasma6-wallpapers-blurredwallpaper-git
pkgver=3.2.0
pkgrel=3
pkgdesc="KDE Plasma wallpaper plugin that blurs the wallpaper when a window is active"
arch=(x86_64)
url="https://github.com/bouteillerAlan/${pkgname}"
license=(GPL-3.0-or-later)
makedepends=('git')
depends=('plasma-workspace')
provides=("$pkgname=$pkgver")
conflicts=('plasma6-wallpapers-blurredwallpaper')
source=("git+${url}.git")
md5sums=("SKIP")
validpgpkeys=(6A2ECC8A396F8A943A109A1E0F11C2A6BF79111E)
package() {
cd "$srcdir/${pkgname}"
install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/"${pkgname}"/
find "${_plasmoidName}" -type f -exec install -Dm 644 "{}" "${pkgdir}/usr/share/plasma/wallpapers/{}" \;
}
|