Date: Sunday, May 7, 2023 @ 20:37:36 Author: arojas Revision: 1459427
Add kaidan Added: kaidan/ kaidan/trunk/ kaidan/trunk/PKGBUILD ----------+ PKGBUILD | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) Added: kaidan/trunk/PKGBUILD =================================================================== --- kaidan/trunk/PKGBUILD (rev 0) +++ kaidan/trunk/PKGBUILD 2023-05-07 20:37:36 UTC (rev 1459427) @@ -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 +}
