diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-18 03:52:05 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-05-18 03:52:05 +0000 |
commit | 423ae5a5a1cd103d57b8cb52279533b3011f42d8 (patch) | |
tree | 0816754beb383cc3d3b45b501150f48ea42b1377 /extra/polkit-qt5 | |
parent | 313040c7029fd0c36db63d7effbb974fd348389c (diff) |
Sun May 18 03:42:25 UTC 2014
Diffstat (limited to 'extra/polkit-qt5')
-rw-r--r-- | extra/polkit-qt5/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/polkit-qt5/PKGBUILD b/extra/polkit-qt5/PKGBUILD new file mode 100644 index 000000000..49340c37e --- /dev/null +++ b/extra/polkit-qt5/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 212982 2014-05-16 23:15:17Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Antonio Rojas <nqn1976 @ gmail.com> + +pkgname=polkit-qt5 +pkgver=0.103.0.bac771e +pkgrel=1 +pkgdesc='Qt wrapper around polkit-1 client libraries' +arch=('i686' 'x86_64') +url='https://projects.kde.org/projects/kdesupport/polkit-qt-1' +license=('LGPL') +depends=('polkit' 'qt5-base') +makedepends=('extra-cmake-modules' 'git') +source=('git://anongit.kde.org/polkit-qt-1#commit=bac771e69887c9253f2b0973f6310810db0061f8') +md5sums=('SKIP') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../polkit-qt-1 \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_INSTALL_DIR=lib + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |