git » libkscreen.git » commit 3c91cde

Plasma 5.11.0

author Antonio Rojas
2017-10-10 10:22:00 UTC
committer Antonio Rojas
2017-10-10 10:22:00 UTC
parent adb7782cf26375375f3b6e479b320b4456893d34

Plasma 5.11.0

PKGBUILD +12 -15

diff --git a/PKGBUILD b/PKGBUILD
index 79bef5e..811f935 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,22 +1,19 @@
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Antonio Rojas <arojas@archlinux.org>
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Antonio Rojas <arojas@archlinux.org>
 
 pkgname=libkscreen
-pkgver=5.10.5
+pkgver=5.11.0
 pkgrel=1
 pkgdesc='KDE screen management software'
-arch=('i686' 'x86_64')
+arch=(i686 x86_64)
 url='https://www.kde.org/workspaces/plasmadesktop/'
-license=('LGPL')
-depends=('qt5-x11extras' 'libxrandr' 'kwayland')
-makedepends=('extra-cmake-modules')
-conflicts=('libkscreen-frameworks')
-replaces=('libkscreen-frameworks')
-provides=('libkscreen-frameworks')
+license=(LGPL)
+depends=(qt5-x11extras libxrandr kwayland)
+makedepends=(extra-cmake-modules)
 groups=(plasma)
-source=("https://download.kde.org/stable/plasma/${pkgver}/libkscreen-$pkgver.tar.xz"{,.sig})
-sha256sums=('c6025440b2e8d81c44ee8063dd2c32c8461d033a8840bbdb6bf65c8e6ece5428'
+source=("https://download.kde.org/stable/plasma/$pkgver/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('24b3cb175922cbec2f5b97b249f2beabd365e0726eca5f67f588038aa0748604'
             'SKIP')
 validpgpkeys=('2D1D5B0588357787DE9EE225EC94D18F7F05997E'  # Jonathan Riddell
               '348C8651206633FD983A8FC4DEACEA00075E1D76'  # KDE Neon
@@ -28,16 +25,16 @@ prepare() {
 
 build() {
   cd build
-  cmake ../libkscreen-${pkgver} \
+  cmake ../$pkgname-$pkgver \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DKDE_INSTALL_LIBDIR=lib \
-    -DKDE_INSTALL_LIBEXECDIR=lib \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
     -DBUILD_TESTING=OFF
   make
 }
 
 package() {
   cd build
-  make DESTDIR="${pkgdir}" install
+  make DESTDIR="$pkgdir" install
 }