git » plasma-framework.git » commit e3f9afa

KDE Frameworks 5.42

author Antonio Rojas
2018-01-13 13:44:15 UTC
committer Antonio Rojas
2018-01-13 13:44:15 UTC
parent ddebd0b78f11d99fa8304022c015db65d8c7f2c9

KDE Frameworks 5.42

PKGBUILD +11 -10

diff --git a/PKGBUILD b/PKGBUILD
index 691723a..b17badf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,19 @@
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Antonio Rojas <arojas@archlinux.org>
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=plasma-framework
-pkgver=5.41.0
+pkgver=5.42.0
 pkgrel=1
 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5'
-arch=('x86_64')
+arch=(x86_64)
 url='https://community.kde.org/Frameworks'
-license=('LGPL')
-depends=('qt5-quickcontrols' 'kactivities' 'kdeclarative' 'kwayland')
-makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools' 'python' 'doxygen')
-groups=('kf5')
+license=(LGPL)
+depends=(qt5-quickcontrols kactivities kdeclarative kwayland kirigami2)
+makedepends=(extra-cmake-modules qt5-tools kdoctools python doxygen)
+groups=(kf5)
 source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
-sha256sums=('84de6496f1f6797cba95ca51607ab59a5f24cbd238f600ec75ccfa0b02b23ae6'
+sha256sums=('50a99d7bd212d124863136f8fa56cf7e82b20051a81699f5c86eae4a01442c1d'
             'SKIP')
 validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
 
@@ -22,10 +23,10 @@ prepare() {
 
 build() {
   cd build
-  cmake ../${pkgname}-${pkgver} \
+  cmake ../$pkgname-$pkgver \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_LIBDIR=lib \
+    -DCMAKE_INSTALL_LIBDIR=lib \
     -DBUILD_TESTING=OFF \
     -DBUILD_QCH=ON
   make
@@ -33,5 +34,5 @@ build() {
 
 package() {
   cd build
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="$pkgdir" install
 }