From 5421c231bd21eb3aeedd8c2121405d117094c0d3 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Mon, 22 Apr 2024 22:31:43 +0200 Subject: [PATCH] signon-kwallet-extension: initial commit, version 24.02.2 --- signon-kwallet-extension/.footprint | 5 +++++ signon-kwallet-extension/.signature | 5 +++++ signon-kwallet-extension/Pkgfile | 26 ++++++++++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 signon-kwallet-extension/.footprint create mode 100644 signon-kwallet-extension/.signature create mode 100644 signon-kwallet-extension/Pkgfile diff --git a/signon-kwallet-extension/.footprint b/signon-kwallet-extension/.footprint new file mode 100644 index 0000000..3cc28d6 --- /dev/null +++ b/signon-kwallet-extension/.footprint @@ -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 diff --git a/signon-kwallet-extension/.signature b/signon-kwallet-extension/.signature new file mode 100644 index 0000000..05a2890 --- /dev/null +++ b/signon-kwallet-extension/.signature @@ -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 diff --git a/signon-kwallet-extension/Pkgfile b/signon-kwallet-extension/Pkgfile new file mode 100644 index 0000000..6b5b4e3 --- /dev/null +++ b/signon-kwallet-extension/Pkgfile @@ -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: