init
This commit is contained in:
commit
98f286ee78
3 changed files with 66 additions and 0 deletions
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by makepkg 4.2.1
|
||||
# Mon Mar 9 17:00:02 UTC 2015
|
||||
pkgbase = polkit-explorer
|
||||
pkgdesc = Present PolicyKit information in a human-readable form.
|
||||
pkgver = 1
|
||||
pkgrel = 5
|
||||
url = https://github.com/scarygliders/Polkit-Explorer
|
||||
arch = any
|
||||
license = ISC
|
||||
depends = python2-pyqt4
|
||||
depends = python2-lxml
|
||||
source = https://github.com/scarygliders/Polkit-Explorer/archive/master.zip
|
||||
source = polkit-explorer.desktop
|
||||
sha256sums = 877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751
|
||||
sha256sums = 4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a
|
||||
|
||||
pkgname = polkit-explorer
|
||||
|
38
PKGBUILD
Normal file
38
PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: Alad Wenter <https://wiki.archlinux.org/index.php/Special:EmailUser/Alad>
|
||||
|
||||
pkgname=polkit-explorer
|
||||
_pkgname=Polkit-Explorer-master
|
||||
pkgver=1
|
||||
pkgrel=6
|
||||
|
||||
pkgdesc="Present PolicyKit information in a human-readable form."
|
||||
arch=('any')
|
||||
url="https://github.com/scarygliders/Polkit-Explorer"
|
||||
license=('ISC')
|
||||
|
||||
depends=('python2-pyqt4' 'python2-lxml')
|
||||
source=('https://github.com/scarygliders/Polkit-Explorer/archive/master.zip'
|
||||
'polkit-explorer.desktop')
|
||||
sha256sums=('877b909d2f85d7c5c448b75a15fc193b1c18882f4548bbd9dbce3805803ae751'
|
||||
'4343e7c3c9e0dc03bfae8521ab4197661c6ddf4caf150ba4cf3369dc9550518a')
|
||||
|
||||
prepare() {
|
||||
sed -i 's/python$/python2/' "$_pkgname"/polkitex.py
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_pkgname"
|
||||
pydir=usr/lib/python2.7/site-packages/polkitex
|
||||
|
||||
install -Dm755 polkitex.py "$pkgdir/$pydir"/polkitex.py
|
||||
install -dm755 "$pkgdir"/usr/bin
|
||||
ln -s /"$pydir"/polkitex.py "$pkgdir"/usr/bin/polkitex
|
||||
|
||||
for i in Ui_*.py; do
|
||||
install -Dm644 "$i" "$pkgdir/$pydir/$i"
|
||||
done
|
||||
|
||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/polkit-explorer/LICENSE
|
||||
install -Dm644 "$srcdir"/polkit-explorer.desktop \
|
||||
"$pkgdir"/usr/share/applications/polkit-explorer.desktop
|
||||
}
|
10
polkit-explorer.desktop
Normal file
10
polkit-explorer.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Name=Polkit-explorer
|
||||
Comment=Present PolicyKit information in a human-readable form.
|
||||
Exec=polkitex
|
||||
Icon=emblem-system
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=System;
|
Loading…
Reference in a new issue