git » frameworkintegration.git » commit 594a418

packagekit-qt 1.0.0 rebuild

author Antonio Rojas
2018-01-12 22:10:04 UTC
committer Antonio Rojas
2018-01-12 22:10:04 UTC
parent 9e8d1bed7f4648e30c14f582dcc6765fe134ea70

packagekit-qt 1.0.0 rebuild

PKGBUILD +11 -11

diff --git a/PKGBUILD b/PKGBUILD
index db5b680..5d4a532 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,18 +1,18 @@
-
 # Maintainer: Felix Yan <felixonmars@archlinux.org>
+# Maintainer: Antonio Rojas <arojas@archlinux.org>
 # Contributor: Andrea Scarpino <andrea@archlinux.org>
 
 pkgname=frameworkintegration
 pkgver=5.41.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Framework providing components to allow applications to integrate with a KDE Workspace'
-arch=('x86_64')
+arch=(x86_64)
 url='https://community.kde.org/Frameworks'
-license=('LGPL')
-depends=('kpackage' 'knewstuff')
-makedepends=('extra-cmake-modules' 'python' 'appstream-qt' 'packagekit-qt5')
+license=(LGPL)
+depends=(kpackage knewstuff)
+makedepends=(extra-cmake-modules python appstream-qt packagekit-qt5)
 optdepends=('appstream-qt: dependency resolving via AppStream' 'packagekit-qt5: dependency resolving via AppStream')
-groups=('kf5')
+groups=(kf5)
 source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig})
 sha256sums=('bac0c93c65cb11d84a8526194cad43b5fcaeb1234622b64f8d854bc1fe84c7cc'
             'SKIP')
@@ -24,16 +24,16 @@ prepare() {
 
 build() {
   cd build
-  cmake ../${pkgname}-${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
 }