blob: ad39c2fb142c2e6b5cf748b1ca11b9fa29079882 (
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: Luis Bocanegra <luisbocanegra17b at gmail dot com>
_gitname=plasma-wallpaper-effects
pkgname=plasma6-applets-wallpaper-effects
pkgver=0.6.1
pkgrel=1
pkgdesc="Plasma Widget to enable Active Blur and other cool effects for all wallpaper plugins"
arch=('any')
url="https://github.com/luisbocanegra/$_gitname"
license=('GPL3')
depends=('plasma-workspace')
makedepends=('extra-cmake-modules')
source=("${_gitname}-${pkgver}.tar.gz::$url/archive/v${pkgver}/${_gitname}-${pkgver}.tar.gz")
sha256sums=('28a3fa63d94358206c0765298f67ad7ef0cec6d5a3df81a9cebbf3bd3c6d4e87')
build() {
cd "${srcdir}/${_gitname}-$pkgver"
cmake -B build -S .
cmake --build build
}
package() {
cd "${srcdir}/${_gitname}-$pkgver"
DESTDIR="$pkgdir" cmake --install build
}
|