Date: Wednesday, November 25, 2020 @ 20:03:22 Author: arojas Revision: 761257
Add communicator Added: communicator/ communicator/trunk/ communicator/trunk/PKGBUILD ----------+ PKGBUILD | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) Added: communicator/trunk/PKGBUILD =================================================================== --- communicator/trunk/PKGBUILD (rev 0) +++ communicator/trunk/PKGBUILD 2020-11-25 20:03:22 UTC (rev 761257) @@ -0,0 +1,23 @@ +# Maintainer: Antonio Rojas <[email protected]> + +pkgname=communicator +pkgver=1.2.0 +pkgrel=1 +pkgdesc="Contacts and dialer application" +url="https://mauikit.org/" +arch=(x86_64) +license=(GPL3) +depends=(mauikit hicolor-icon-theme kpeople kcontacts) +makedepends=(extra-cmake-modules) +groups=(maui) +source=(https://invent.kde.org/maui/$pkgname/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz) +sha256sums=('a23040f055b5651c2c3e84d34b5cfdf85f274f7b0e19c9101a3c02de47386801') + +build() { + cmake -B build -S $pkgname-v$pkgver + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build +}
