Date: Thursday, May 4, 2023 @ 17:00:39
Author: arojas
Revision: 1458785
archrelease: copy trunk to community-x86_64
Added:
kommit/repos/
kommit/repos/community-x86_64/
kommit/repos/community-x86_64/PKGBUILD
(from rev 1458784, kommit/trunk/PKGBUILD)
kommit/repos/community-x86_64/keys/
----------+
PKGBUILD | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
Copied: kommit/repos/community-x86_64/PKGBUILD (from rev 1458784,
kommit/trunk/PKGBUILD)
===================================================================
--- repos/community-x86_64/PKGBUILD (rev 0)
+++ repos/community-x86_64/PKGBUILD 2023-05-04 17:00:39 UTC (rev 1458785)
@@ -0,0 +1,24 @@
+# Maintainer: Antonio Rojas <[email protected]>
+
+pkgname=kommit
+pkgver=1.0.2
+pkgrel=1
+pkgdesc='Git gui client'
+arch=(x86_64)
+url='https://apps.kde.org/kommit'
+license=(GPL3)
+depends=(git kio ktexteditor)
+makedepends=(extra-cmake-modules kdoctools)
+source=(https://download.kde.org/stable/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('1e8ecad23aa10508d0685a2e9169fc562e12fad5a6adaacd4542d9007a68e96e'
+ 'SKIP')
+validpgpkeys=('E0A3EB202F8E57528E13E72FD7574483BB57B18D') # Jonathan
Esk-Riddell <[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}