summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 67a71faa1b3429936273226a1362652e5fa443e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Maintainer: LightDot <lightdot -a-t- g m a i l>

_pkgname=polkit-efl
pkgname=$_pkgname-git
pkgver=0.1.0.r8.g6417565
pkgrel=1
pkgdesc="Enlightenment polkit authentication agent using EFL - development version."
arch=('any')
url="http://www.enlightenment.org"
license=('GPL3' 'LGPL')   # LGPL for icons
depends=('python-efl' 'polkit')
makedepends=('git' 'mesa' 'python')
optdepends=('python-psutil: For process details')
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=("git+https://git.enlightenment.org/misc/$_pkgname.git")
sha256sums=('SKIP')

pkgver() {
  cd "$srcdir/$_pkgname"
  git describe --tags --long | sed 's/^v//;s/-/.r/;s/-/./g'
}

build() {
  cd "$srcdir/$_pkgname"
  python setup.py build
}

package() {
  cd "$srcdir/$_pkgname"
  python setup.py install --root="${pkgdir}"
}