# Maintainer: Gustavo Castro < gustawho [ at ] gmail [ dot ] com > pkgname=qmlkonsole-git pkgver=v21.05.r1.g51d8906 pkgrel=1 pkgdesc="Terminal app for Plasma Mobile" arch=(x86_64 i686 arm armv6h armv7h aarch64) url="https://invent.kde.org/plasma-mobile/qmlkonsole" license=('GPL3') depends=('ki18n' 'kconfig' 'kirigami2' 'qmltermwidget') makedepends=('git' 'qt5-tools' 'qt5-svg' 'extra-cmake-modules') provides=('qmlkonsole') conflicts=('qmlkonsole') source=("git+${url}.git") sha256sums=('SKIP') pkgver() { cd "${pkgname%-git}" ( set -o pipefail git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" ) } build() { cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo -B build -S "${pkgname%-git}" cmake --build build --config RelWithDebInfo } package() { DESTDIR="${pkgdir}" cmake --install build --config RelWithDebInfo }