Compare commits
4 commits
main
...
packages/p
Author | SHA1 | Date | |
---|---|---|---|
46993b23f5 | |||
f07184a44e | |||
87d93370f6 | |||
f3a7d417ca |
2 changed files with 21 additions and 18 deletions
9
.SRCINFO
9
.SRCINFO
|
@ -1,15 +1,16 @@
|
|||
pkgbase = polkit-explorer-git
|
||||
pkgdesc = Present PolicyKit information in a human-readable form.
|
||||
pkgver = 15.fac8d70
|
||||
pkgrel = 3
|
||||
pkgver = 22.3ad139b
|
||||
pkgrel = 5
|
||||
url = https://github.com/scarygliders/polkit-explorer
|
||||
arch = any
|
||||
license = ISC
|
||||
depends = python-pyqt5
|
||||
makedepends = git
|
||||
depends = pyside6
|
||||
depends = python-lxml
|
||||
provides = polkit-explorer
|
||||
conflicts = polkit-explorer
|
||||
source = git+https://github.com/scarygliders/polkit-explorer.git
|
||||
sha256sums = SKIP
|
||||
sha512sums = SKIP
|
||||
|
||||
pkgname = polkit-explorer-git
|
||||
|
|
30
PKGBUILD
30
PKGBUILD
|
@ -2,32 +2,34 @@
|
|||
# Contributor: Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>
|
||||
|
||||
pkgname=polkit-explorer-git
|
||||
pkgver=15.fac8d70
|
||||
pkgrel=3
|
||||
_pkgname=${pkgname%-git}
|
||||
pkgver=22.3ad139b
|
||||
pkgrel=5
|
||||
pkgdesc='Present PolicyKit information in a human-readable form.'
|
||||
arch=('any')
|
||||
url="https://github.com/scarygliders/${pkgname//-git}"
|
||||
url="https://github.com/scarygliders/${_pkgname}"
|
||||
license=('ISC')
|
||||
depends=('python-pyqt5' 'python-lxml')
|
||||
depends=('pyside6' 'python-lxml')
|
||||
makedepends=('git')
|
||||
conflicts=('polkit-explorer')
|
||||
provides=('polkit-explorer')
|
||||
source=("git+https://github.com/scarygliders/${pkgname//-git}.git")
|
||||
sha256sums=('SKIP')
|
||||
source=("git+${url}.git")
|
||||
sha512sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "${srcdir}/${pkgname//-git}"
|
||||
cd "${srcdir}/${_pkgname}"
|
||||
printf '%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname//-git}"
|
||||
cd "${srcdir}/${_pkgname}"
|
||||
|
||||
install -d -m755 "${pkgdir}"/{usr/bin,opt/$pkgname}
|
||||
install -m644 Ui_*.py "${pkgdir}/opt/${pkgname}/"
|
||||
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"
|
||||
install -m755 'polkitex.py' "${pkgdir}/opt/${_pkgname}/"
|
||||
ln -s "/opt/${_pkgname}/polkitex.py" "${pkgdir}/usr/bin/polkitex"
|
||||
|
||||
install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
|
||||
install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE"
|
||||
install -Dm644 "polkitex.desktop" "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue