blob: 1df72aa5f2133695ee13e96464eff4718697bc37 (
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
25
|
# Maintainer: Luis Bocanegra <luisbocanegra17b at gmail dot com>
_gitname=plasma-smart-video-wallpaper-reborn
pkgname=plasma6-wallpapers-smart-video-wallpaper-reborn
pkgver=1.1.1
pkgrel=1
pkgdesc="Smart KDE Plasma 6 Wallpaper plugin to play videos on your Desktop/Lock Screen"
arch=('any')
url="https://github.com/luisbocanegra/$_gitname"
license=('GPL3')
depends=('plasma-workspace' 'qt6-multimedia' 'qt6-multimedia-ffmpeg')
makedepends=('extra-cmake-modules' 'gettext' 'python')
source=("${_gitname}-${pkgver}.tar.gz::$url/archive/v${pkgver}/${_gitname}-${pkgver}.tar.gz")
sha256sums=('a7cb8c1f7d422b0d64520f150a9bb77da963ac18eb5975f982e9e21e369c2c06')
build() {
cd "${srcdir}/${_gitname}-$pkgver"
python ./kpac i18n --no-merge
cmake -B build -S .
cmake --build build
}
package() {
cd "${srcdir}/${_gitname}-$pkgver"
DESTDIR="$pkgdir" cmake --install build
}
|