# Merged with official ABS kdesignerplugin PKGBUILD by João, 2021/02/01 (all respective contributors apply herein) # Maintainer: João Figueiredo & chaotic-aur # Contributor: Andrea Scarpino pkgname=kdesignerplugin-git pkgver=5.116.0_r466.g9f25b26 pkgrel=2 pkgdesc='Integration of Frameworks widgets in Qt Designer/Creator' arch=($CARCH) url='https://community.kde.org/Frameworks' license=(LGPL) depends=(kconfig5 kcoreaddons5) makedepends=(git extra-cmake-modules-git qt5-tools kdoctools5) conflicts=(${pkgname%-git}) provides=(${pkgname%-git}) groups=(kf5-aids-git) source=("git+https://github.com/KDE/${pkgname%-git}.git#branch=kf5") sha256sums=('SKIP') pkgver() { cd ${pkgname%-git} _ver="$(grep -m1 'set(KF5\?_VERSION' CMakeLists.txt | cut -d '"' -f2 | tr - .)" echo "${_ver}_r$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)" } build() { cmake -B build -S ${pkgname%-git} \ -DBUILD_TESTING=OFF cmake --build build } package() { DESTDIR="$pkgdir" cmake --install build }