blob: 75db5ddcb7dab235e78066cd1d3583f733e63f53 (
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
33
34
35
36
37
38
39
|
pkgname=powerline-i3-git
pkgver=1.2.3
pkgrel=1
pkgdesc="The ultimate statusline/prompt utility. A fork containing more features for the i3 window manager."
arch=('i686' 'x86_64')
url="https://github.com/ph111p/powerline"
license=('MIT')
depends=(
'python'
'powerline-fonts-git'
'lemonbar-xft-git'
'ttf-font-awesome'
)
optdepends=(
'i3ipc-python-git: workspace segment'
'wpa_actiond: wireless segment'
'wireless_tools: wireless segment'
'python-iwlib: wireless segment'
'python-pyalsaaudio: volume segment'
'python-psutil: cpu load segment'
'python-pygit2: better git performance of the vcs segment'
'python-google-api-python-client: Google Calendar support for the appoints segment'
'python-gflags: Google Calendar support for the appoints segment'
)
makedepends=(
'python-setuptools'
)
provides=('powerline-i3')
conflicts=('powerline', 'python-powerline')
install=$pkgname.install
source=("git://github.com/ph111p/powerline.git")
sha512sums=('SKIP')
package() {
cd powerline
python setup.py install --root="${pkgdir}" --optimize=1
}
|