2021-04-02 15:04:40 +02:00
|
|
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
2016-02-06 20:10:04 +01:00
|
|
|
# Contributor: Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>
|
2015-06-16 12:29:46 +02:00
|
|
|
|
2021-10-17 10:16:20 +02:00
|
|
|
pkgname=polkit-explorer-git
|
2021-07-04 17:03:36 +02:00
|
|
|
pkgver=15.fac8d70
|
2022-03-24 19:40:43 +01:00
|
|
|
pkgrel=3
|
2016-02-06 20:10:04 +01:00
|
|
|
pkgdesc='Present PolicyKit information in a human-readable form.'
|
2015-07-25 01:07:05 +02:00
|
|
|
arch=('any')
|
2021-10-17 10:16:20 +02:00
|
|
|
url="https://github.com/scarygliders/${pkgname//-git}"
|
2016-02-06 20:10:04 +01:00
|
|
|
license=('ISC')
|
2021-04-02 15:04:40 +02:00
|
|
|
depends=('python-pyqt5' 'python-lxml')
|
2021-10-17 10:16:20 +02:00
|
|
|
conflicts=('polkit-explorer')
|
|
|
|
provides=('polkit-explorer')
|
2022-03-24 19:40:43 +01:00
|
|
|
source=("git+https://github.com/scarygliders/${pkgname//-git}.git")
|
2017-10-03 15:00:55 +02:00
|
|
|
sha256sums=('SKIP')
|
2015-06-16 12:29:46 +02:00
|
|
|
|
2016-02-06 20:10:04 +01:00
|
|
|
pkgver() {
|
2022-03-02 15:38:23 +01:00
|
|
|
cd "${srcdir}/${pkgname//-git}"
|
2016-02-06 20:10:04 +01:00
|
|
|
printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
|
|
|
}
|
|
|
|
|
2015-06-16 12:29:46 +02:00
|
|
|
package() {
|
2022-03-02 15:38:23 +01:00
|
|
|
cd "${srcdir}/${pkgname//-git}"
|
2015-08-07 15:42:44 +02:00
|
|
|
|
2021-04-02 15:04:40 +02:00
|
|
|
install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname}
|
|
|
|
install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/"
|
|
|
|
|
|
|
|
install -m755 'polkitex.py' "${pkgdir}/opt/${pkgname}/"
|
|
|
|
ln -s "/opt/${pkgname}/polkitex.py" "${pkgdir}/usr/bin/polkitex"
|
2016-02-06 20:10:04 +01:00
|
|
|
|
|
|
|
install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
2017-10-03 15:00:55 +02:00
|
|
|
install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
|
2015-06-16 12:29:46 +02:00
|
|
|
}
|