PKGBUILDs/extra/kauth/PKGBUILD

44 lines
1.2 KiB
Bash
Raw Normal View History

2017-04-23 16:20:00 +00:00
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2018-04-16 12:32:49 +00:00
# Maintainer: Antonio Rojas <arojas@archlinux.org>
2017-04-23 16:20:00 +00:00
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - drop clang makedepend, FTBFS on AArch64
pkgname=kauth
2018-05-14 12:39:18 +00:00
pkgver=5.46.0
2017-05-15 12:26:24 +00:00
pkgrel=1
2017-04-23 16:20:00 +00:00
pkgdesc='Abstraction to system policy and authentication features'
2018-04-16 12:32:49 +00:00
arch=(x86_64)
2017-04-23 16:20:00 +00:00
url='https://community.kde.org/Frameworks'
2018-04-16 12:32:49 +00:00
license=(LGPL)
depends=(kcoreaddons polkit-qt5)
makedepends=(extra-cmake-modules qt5-tools python-pyqt5 python2-pyqt5 doxygen)
2017-04-23 16:20:00 +00:00
optdepends=('python-pykf5: to use the Python 3 bindings' 'python2-pykf5: to use the Python 2 bindings')
2018-04-16 12:32:49 +00:00
groups=(kf5)
source=("https://download.kde.org/stable/frameworks/${pkgver%.*}/$pkgname-$pkgver.tar.xz"{,.sig})
2018-05-14 12:39:18 +00:00
sha256sums=('23af3df06e6db7c3fcd535de8659d3e33a06b879b07394a1397499fdbbda1f70'
2017-05-15 12:26:24 +00:00
'SKIP')
2017-04-23 16:20:00 +00:00
validpgpkeys=(53E6B47B45CEA3E0D5B7457758D0EE648A48B3BB) # David Faure <faure@kde.org>
prepare() {
mkdir -p build
}
build() {
cd build
2018-04-16 12:32:49 +00:00
cmake ../$pkgname-$pkgver \
2017-04-23 16:20:00 +00:00
-DCMAKE_INSTALL_PREFIX=/usr \
2018-01-15 23:18:52 +00:00
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_LIBEXECDIR=lib \
2017-07-10 12:36:39 +00:00
-DBUILD_TESTING=OFF \
-DBUILD_QCH=ON
2017-04-23 16:20:00 +00:00
make
}
package() {
cd build
2018-04-16 12:32:49 +00:00
make DESTDIR="$pkgdir" install
2017-04-23 16:20:00 +00:00
}