summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 060d861e12847a4cae71b2ce3f38e7278725384a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Tim Liou <wheatdoge at gmail dot com>
pkgname=i3-workspace-groups
pkgver=0.4.6
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' 'python-i3ipc')
makedepends=('python-setuptools' 'git')
install="${pkgname}.install"

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

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