Date: Thursday, May 4, 2023 @ 17:00:19 Author: arojas Revision: 1458783
Add kommit Added: kommit/ kommit/trunk/ kommit/trunk/PKGBUILD ----------+ PKGBUILD | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) Added: kommit/trunk/PKGBUILD =================================================================== --- kommit/trunk/PKGBUILD (rev 0) +++ kommit/trunk/PKGBUILD 2023-05-04 17:00:19 UTC (rev 1458783) @@ -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 +}
