PKGBUILDs/extra/kconfigwidgets/PKGBUILD

34 lines
1.1 KiB
Bash
Raw Normal View History

2018-07-17 00:17:55 +00:00
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Maintainer: Antonio Rojas <arojas@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - drop clang makedepend to fix v5/v6 FTBFS
pkgname=kconfigwidgets
2021-02-14 19:24:30 +00:00
pkgver=5.79.0
2020-12-13 18:48:30 +00:00
pkgrel=1
2018-07-17 00:17:55 +00:00
pkgdesc='Widgets for KConfig'
arch=(x86_64)
url='https://community.kde.org/Frameworks'
license=(LGPL)
depends=(kauth kcodecs kconfig kguiaddons ki18n kwidgetsaddons)
2021-01-10 19:39:51 +00:00
makedepends=(extra-cmake-modules kdoctools python-pyqt5 doxygen qt5-tools qt5-doc sip4)
2020-02-10 13:18:08 +00:00
optdepends=('python-pyqt5: for the Python bindings' 'perl: for preparetips5')
2018-07-17 00:17:55 +00:00
groups=(kf5)
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
2021-02-14 19:24:30 +00:00
sha256sums=('7ea01c69328f460a1e70131626d00a7a668814ab415dca7692dbc6a1631330d3'
2018-07-17 00:17:55 +00:00
'SKIP')
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
build() {
2020-06-15 12:36:33 +00:00
cmake -B build -S $pkgname-$pkgver \
2018-07-17 00:17:55 +00:00
-DBUILD_TESTING=OFF \
-DBUILD_QCH=ON
2020-06-15 12:36:33 +00:00
cmake --build build
2018-07-17 00:17:55 +00:00
}
package() {
2020-06-15 12:36:33 +00:00
DESTDIR="$pkgdir" cmake --install build
2018-07-17 00:17:55 +00:00
}