Tsaop 82d2e25e30 plasma: update to 6.1.3 (#18)
This will update plasma to 6.1.3

Co-authored-by: Tim Biermann <tbier@posteo.de>
Reviewed-on: ports/kde-plasma-6#18
Co-authored-by: Tsaop <leeroy@cock.li>
Co-committed-by: Tsaop <leeroy@cock.li>
2024-07-19 08:06:30 +02:00

25 lines
710 B
Plaintext

# Description: Plasma workspace wallpapers
# URL: https://kde.org/plasma-desktop/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: extra-cmake-modules
name=plasma-workspace-wallpapers
version=6.1.3
release=1
source=(https://download.kde.org/stable/plasma/$version/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}
# vim: set ts=4 et: