author | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2020-06-13 18:21:37 UTC |
parent | 4e03c73f7d458c89c97e216832c2dfe12e746031 |
PKGBUILD | +5 | -11 |
diff --git a/PKGBUILD b/PKGBUILD index 2546072..fea5f62 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=kguiaddons -pkgver=5.70.0 +pkgver=5.71.0 pkgrel=1 pkgdesc='Addons to QtGui' arch=(x86_64) @@ -14,23 +14,17 @@ makedepends=(extra-cmake-modules clang python-pyqt5 doxygen qt5-tools qt5-doc si optdepends=('python-pyqt5: for the Python bindings') groups=(kf5) source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('b43c80e10dea65c7f9325d9ba26a2b95aa8586f697b14e0e84f4ffb46093cdfa' +sha256sums=('c1f7bf540a689319962275916c0434f47ba5ed8f7d46a78704393163e32eccd2' 'SKIP') validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DBUILD_TESTING=OFF \ -DBUILD_QCH=ON - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }