arch-packages/plasma5-wallpapers-wallpape.../PKGBUILD

34 lines
1.2 KiB
Bash
Raw Normal View History

2022-04-20 22:01:03 +02:00
# Maintainer: Manuel Hüsers <aur@huesers.de>
pkgname=plasma5-wallpapers-wallpaper-engine
_pkgname=wallpaper-engine-kde-plugin
2022-07-31 14:32:36 +02:00
pkgver=0.5.4
_pkgver_glslang=11.11.0
pkgrel=3
2022-05-06 22:44:04 +02:00
pkgdesc='A KDE wallpaper plugin integrating wallpaper engine'
2022-04-23 17:52:49 +02:00
arch=('x86_64')
url="https://github.com/catsout/${_pkgname}"
2022-04-20 22:01:03 +02:00
license=('GPL2')
2022-04-23 19:42:01 +02:00
depends=('gst-libav' 'python-websockets' 'plasma-framework' 'qt5-declarative' 'qt5-websockets')
makedepends=('extra-cmake-modules' 'qt5-webchannel' 'mpv' 'vulkan-headers')
optdepends=('qt5-webchannel: for web support'
2022-05-06 22:44:04 +02:00
'mpv: alternative video backend')
2022-11-23 17:58:12 +01:00
source=("https://github.com/catsout/${_pkgname}/archive/v${pkgver}/${_pkgname}-${pkgver}.tar.gz"
"https://github.com/KhronosGroup/glslang/archive/${_pkgver_glslang}/glslang-${_pkgver_glslang}.tar.gz")
2022-08-07 13:28:52 +02:00
sha256sums=('83354734f7ea36e7077206506dd05f0e6877eb51294b820fdbdc398255c6f803'
'26c216c3062512c018cbdd752224b8dad703b7e5bb90bf338ba2dbb5d4f11438')
2022-04-20 22:01:03 +02:00
prepare() {
mv -T "glslang-${_pkgver_glslang}" "${_pkgname}-${pkgver}/src/backend_scene/third_party/glslang"
}
build() {
2022-06-04 23:53:37 +02:00
cmake -B build -S "${_pkgname}-${pkgver}" \
-DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF
cmake --build build
2022-04-20 22:01:03 +02:00
}
package() {
2022-06-04 23:53:37 +02:00
DESTDIR="$pkgdir" cmake --install build
2022-04-20 22:01:03 +02:00
}