Date: Saturday, March 11, 2023 @ 16:24:53
Author: arojas
Revision: 470621
archrelease: copy trunk to testing-x86_64
Added:
kdesignerplugin/repos/testing-x86_64/
kdesignerplugin/repos/testing-x86_64/PKGBUILD
(from rev 470620, kdesignerplugin/trunk/PKGBUILD)
kdesignerplugin/repos/testing-x86_64/keys/
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: kdesignerplugin/repos/testing-x86_64/PKGBUILD (from rev 470620,
kdesignerplugin/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-03-11 16:24:53 UTC (rev 470621)
@@ -0,0 +1,27 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=kdesignerplugin
+pkgver=5.104.0
+pkgrel=1
+pkgdesc='Integration of Frameworks widgets in Qt Designer/Creator'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kconfig kcoreaddons)
+makedepends=(extra-cmake-modules qt5-tools kdoctools)
+groups=(kf5-aids)
+source=(https://download.kde.org/stable/frameworks/${pkgver%.*}/portingAids/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('bc9b0244f37938683d9e7dd622ff853a9b757cefcbc0f0f257e99443f2968183'
+ 'SKIP')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}