Date: Sunday, May 7, 2023 @ 20:37:56
Author: arojas
Revision: 1459429
archrelease: copy trunk to community-x86_64
Added:
kaidan/repos/
kaidan/repos/community-x86_64/
kaidan/repos/community-x86_64/PKGBUILD
(from rev 1459428, kaidan/trunk/PKGBUILD)
kaidan/repos/community-x86_64/keys/
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: kaidan/repos/community-x86_64/PKGBUILD (from rev 1459428,
kaidan/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-05-07 20:37:56 UTC (rev 1459429)
@@ -0,0 +1,27 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kaidan
+pkgver=0.9.1
+pkgrel=1
+pkgdesc='A user-friendly XMPP client for every device'
+arch=(x86_64)
+url='https://www.kaidan.im/'
+license=(GPL3 MIT)
+depends=(knotifications kirigami2 kio kquickimageeditor kirigami-addons
+ qt5-location qt5-svg qxmpp-qt5 zxing-cpp qqc2-desktop-style
libomemo-c)
+makedepends=(extra-cmake-modules qt5-tools)
+source=(https://download.kde.org/unstable/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('8137011d5c36a11d23fcc600d4fd5b0767951d69cf21c8eaac43e98d1c918f90'
+ 'SKIP')
+validpgpkeys=(03C2D10DC97E5B0BEBB8F3B44663231A91A1E27B) # Linus Jahn
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+
+ install -Dm644 $pkgname-$pkgver/LICENSE -t
"$pkgdir"/usr/share/licenses/$pkgname
+}