signon-kwallet-extension: initial commit, version 24.02.2

This commit is contained in:
Tim Biermann 2024-04-22 22:31:43 +02:00
parent 0fbdc72c39
commit 5421c231bd
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,5 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/signon/
drwxr-xr-x root/root usr/lib/signon/extensions/
-rwxr-xr-x root/root usr/lib/signon/extensions/libkeyring-kwallet.so

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3piJvkHE8zT64ubWcbIH4wmpnOqau8Eb3323yMmGczCK8037Pzj6+AcB42rHa4rxxlIXDQVpMzB3zxul8e/ssgI=
SHA256 (Pkgfile) = d66a456fec79856291948eec22009472056629a0ab24932279e70d2c4d26d6de
SHA256 (.footprint) = 20b0cd7ac76c6928c2da3a4f2645864889edb75fe361269331597b06f0990e4a
SHA256 (signon-kwallet-extension-24.02.2.tar.xz) = 373275e239d887d58ed4502c2ec0417b1ca14757e97bc6827dc0633322a976e2

View File

@ -0,0 +1,26 @@
# Description: KWallet integration for signon framework
# URL: https://www.kde.org/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: kwallet signond
name=signon-kwallet-extension
version=24.02.2
release=1
source=(https://download.kde.org/stable/release-service/$version/src/$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" \
-D QT_MAJOR_VERSION=6 \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}
# vim: set ts=4 et: