From cdb892cf29947b2f7326a16fa0dafd9824f358e0 Mon Sep 17 00:00:00 2001 From: kth5 Date: Sat, 6 Jan 2024 11:14:29 +0100 Subject: [PATCH] * update kdsoap-ws-discovery-client to 0.3.0-2 --- kdsoap-ws-discovery-client/PKGBUILD | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/kdsoap-ws-discovery-client/PKGBUILD b/kdsoap-ws-discovery-client/PKGBUILD index 8bcd796cc4..be4a570af0 100644 --- a/kdsoap-ws-discovery-client/PKGBUILD +++ b/kdsoap-ws-discovery-client/PKGBUILD @@ -2,25 +2,33 @@ # Maintainer: Antonio Rojas pkgname=kdsoap-ws-discovery-client -pkgver=git20200927 +pkgver=0.3.0 pkgrel=2 -_commit=dcefb65c88e76f1f9eda8b0318006e93d15a0e1e pkgdesc='WS-Discovery client library based on KDSoap' license=(GPL3 custom) arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url='https://caspermeijn.gitlab.io/kdsoap-ws-discovery-client/' -depends=(kdsoap) -makedepends=(extra-cmake-modules doxygen qt5-tools qt5-doc) -source=(https://gitlab.com/caspermeijn/kdsoap-ws-discovery-client/-/archive/$_commit/$pkgname-$_commit.tar.gz) -sha256sums=('8b80ac16fe4b7a0c2cd319eaaa2fd2d03c8c01e15298f62c14574fe53925b8d8') +depends=(gcc-libs + glibc + kdsoap-qt6 + qt6-base) +makedepends=(doxygen + extra-cmake-modules + qt6-doc + qt6-tools) +source=(https://download.kde.org/unstable/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}) +sha256sums=('5007747f1ce607639bb63244f8894c03a15194c0a891b8d85e10d76dbdf79188' + 'SKIP') +validpgpkeys=(E0A3EB202F8E57528E13E72FD7574483BB57B18D) # Jonathan Esk-Riddell build() { - cmake -B build -S $pkgname-$_commit \ - -DBUILD_QCH=ON + cmake -B build -S $pkgname-$pkgver \ + -DBUILD_QCH=ON \ + -DQT_MAJOR_VERSION=6 cmake --build build } package() { DESTDIR="$pkgdir" cmake --install build - install -Dm644 "$srcdir"/$pkgname-$_commit/LICENSES/* -t "$pkgdir"/usr/share/licenses/$pkgname + install -Dm644 $pkgname-$pkgver/LICENSES/* -t "$pkgdir"/usr/share/licenses/$pkgname }