author | Antonio Rojas
<arojas@archlinux.org> 2020-06-09 11:00:48 UTC |
committer | Antonio Rojas
<arojas@archlinux.org> 2020-06-09 11:00:48 UTC |
parent | 0217e749fa1f6204bf25d8dc90957edc25d7a8fd |
PKGBUILD | +6 | -12 |
diff --git a/PKGBUILD b/PKGBUILD index f08dd04..ff0bf5d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,8 +2,8 @@ # Maintainer: Felix Yan <felixonmars@archlinux.org> pkgname=plasma-integration -pkgver=5.18.5 -pkgrel=2 +pkgver=5.19.0 +pkgrel=1 pkgdesc="Qt Platform Theme integration plugins for the Plasma workspaces" arch=(x86_64) url='https://www.kde.org/workspaces/plasmadesktop/' @@ -12,25 +12,19 @@ depends=(kio kwayland libxcursor noto-fonts ttf-hack qqc2-desktop-style perl) makedepends=(extra-cmake-modules breeze) groups=(plasma) source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig}) -sha256sums=('c99b987efb2ab965cc2a55793ef94c7ccb2152ca5d75956a40ec99261ad4b870' +sha256sums=('430eabea3ff270b8e8bd9b3b73393bc8b1df82c1373d7123a769bef877c5185f' 'SKIP') validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E' # Jonathan Riddell <jr@jriddell.org> '0AAC775BB6437A8D9AF7A3ACFE0784117FBCE11D' # Bhushan Shah <bshah@kde.org> 'D07BD8662C56CB291B316EB2F5675605C74E02CF' # David Edmundson <davidedmundson@kde.org> '1FA881591C26B276D7A5518EEAAF29B42A678C20') # Marco Martin <notmart@gmail.com> -prepare() { - mkdir -p build -} - build() { - cd build - cmake ../$pkgname-$pkgver \ + cmake -B build -S $pkgname-$pkgver \ -DBUILD_TESTING=OFF - make + cmake --build build } package() { - cd build - make DESTDIR="$pkgdir" install + DESTDIR="$pkgdir" cmake --install build }