summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 72daff42eebddf9405cd95442f31d9578d26a71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Tim Liou <wheatdoge at gmail dot com>
pkgname=i3-workspace-groups
pkgver=0.2.0
pkgrel=1
pkgdesc='Manage i3wm workspaces in groups you control'
url='https://github.com/infokiller/i3-workspace-groups'
arch=('any')
license=('MIT')
source=("git+https://github.com/infokiller/i3-workspace-groups#tag=$pkgver")
sha256sums=('SKIP')
depends=('python' 'i3-wm')
makedepends=('python-setuptools' 'git')

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

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