mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 21:07:14 +08:00
44 lines
1.0 KiB
Bash
44 lines
1.0 KiB
Bash
#
|
|
# Contributor: Andrea Scarpino <andrea@archlinux.org>
|
|
# Contributor: Antonio Rojas <nqn1976 @ gmail.com>
|
|
|
|
source ../plasma.conf
|
|
|
|
pkgname=polkit-kde-agent-frameworks
|
|
pkgver=${PVersion}
|
|
pkgrel=1
|
|
pkgdesc='Daemon providing a polkit authentication UI for KDE'
|
|
arch=('i686' 'x86_64')
|
|
url='https://projects.kde.org/projects/extragear/base/polkit-kde-agent-1/'
|
|
license=('LGPL')
|
|
depends=('kdelibs4support')
|
|
makedepends=('extra-cmake-modules' 'git' 'kdoctools' 'python')
|
|
source=('git://anongit.kde.org/polkit-kde-agent-1.git#commit=cecfca6'
|
|
'libexecpath.patch')
|
|
md5sums=('SKIP'
|
|
'166213b7c620fe604f3ecbd9353f294a')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
|
|
cd polkit-kde-agent-1
|
|
patch -Rp1 -i "${srcdir}"/libexecpath.patch
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
cmake ../polkit-kde-agent-1 \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DLIB_INSTALL_DIR=lib \
|
|
-DSYSCONF_INSTALL_DIR=/etc \
|
|
-DLIBEXEC_INSTALL_DIR=lib/polkit-kde \
|
|
-DBUILD_TESTING=OFF
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|