[arch-commits] Commit in kauth/repos (testing-x86_64 testing-x86_64/PKGBUILD)

Antonio Rojas arojas at archlinux.org
Mon May 13 20:00:35 UTC 2019


    Date: Monday, May 13, 2019 @ 20:00:34
  Author: arojas
Revision: 353165

archrelease: copy trunk to testing-x86_64

Added:
  kauth/repos/testing-x86_64/
  kauth/repos/testing-x86_64/PKGBUILD
    (from rev 353164, kauth/trunk/PKGBUILD)

----------+
 PKGBUILD |   44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

Copied: kauth/repos/testing-x86_64/PKGBUILD (from rev 353164, kauth/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2019-05-13 20:00:34 UTC (rev 353165)
@@ -0,0 +1,44 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=kauth
+pkgver=5.58.0
+pkgrel=1
+pkgdesc='Abstraction to system policy and authentication features'
+arch=(x86_64)
+url='https://community.kde.org/Frameworks'
+license=(LGPL)
+depends=(kcoreaddons polkit-qt5)
+makedepends=(extra-cmake-modules qt5-tools clang python-pyqt5 doxygen sip)
+optdepends=('python-pyqt5: for the Python bindings')
+groups=(kf5)
+source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig}
+        kauth-dbusdir.patch::"https://cgit.kde.org/kauth.git/patch/?id=34501bce")
+sha256sums=('8c004199f1e7aa14f9244299bb8b288f6d077e5c2557f089a530d0c1cd072f4f'
+            'SKIP'
+            '848056015103ea9b5d81f56098df22f070c1608f835f39c4bf1a4d4a40c3fdf8')
+validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure at kde.org>
+
+prepare() {
+  mkdir -p build
+
+  cd $pkgname-$pkgver
+  patch -p1 -i ../kauth-dbusdir.patch # Install dbus conf in /usr/share 
+}
+
+build() {
+  cd build
+  cmake ../$pkgname-$pkgver \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCMAKE_INSTALL_LIBEXECDIR=lib \
+    -DBUILD_TESTING=OFF \
+    -DBUILD_QCH=ON
+  make
+}
+
+package() {
+  cd build
+  make DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list