Tsaop df16ae93f6 plasma: update to 6.1.2 (#14)
This updates plasma to 6.1.2

Thanks.

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

29 lines
825 B
Plaintext

# Description: PAM Integration with KWallet - Unlock KWallet when you login
# URL: https://kde.org/plasma-desktop/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kwallet socat
name=kwallet-pam
version=6.1.2
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_INSTALL_LIBEXECDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
mkdir -p $PKG/lib
mv $PKG/usr/lib/security $PKG/lib/
rm -r $PKG/usr/lib/systemd
}
# vim: set ts=4 et: