summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 612d2af0c5adfdc16b78f8a3b9dd64b830298105 (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
40
41
42
43
44
45
46
47
48
49
50
51
# Maintainer: Yousef El-Darsh <yousef.eldarsh@gmail.com>

pkgname=python-fabric-git
reponame=fabric
pkgver=0.0.1
pkgrel=1
pkgdesc="next-gen GTK+ based desktop widgets python framework"
arch=(any)
url="http://github.com/Fabric-Development/fabric"
license=('unknown')
groups=()
depends=(
    gtk3
    cairo
    gtk-layer-shell
    libgirepository
    gobject-introspection
    gobject-introspection-runtime
    python
    python-pip
    python-gobject
    python-cairo
    python-loguru
    pkgconf
)
makedepends=(
    python-setuptools
    git
)
optdepends=(
    "python-psutil: for system stats, this package is a dependency of the bar example file"
)
provides=(
    python-fabric
)
conflicts=(
    python-fabric
)

source=(git+http://github.com/Fabric-Development/$reponame.git)
sha256sums=("SKIP")

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

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