summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 595f89bcf45ac9eb537419dd10a631b93e4e11de (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
# Maintainer: Nathaniel Maia <natemaia10@gmail.com>

pkgname=dk
pkgver=2.2
pkgrel=1
pkgdesc="A tiling window manager in the vein of dwm, bspwm, and xmonad."
url="https://bitbucket.org/natemaia/dk"
arch=('x86_64')
license=('MIT')
source=("git+${url}.git#tag=v${pkgver}")
sha256sums=('SKIP')
optdepends=(
		'sxhkd: keybind support [recommended]'
		'st: example rc files default terminal'
		'dmenu: example rc files default launcher'
		)
makedepends=('git')
depends=('xcb-proto' 'xcb-util' 'xcb-util-wm' 'xcb-util-keysyms' 'xcb-util-cursor')
install=dk.install

package()
{
	cd dk/ &&
		make DESTDIR="$pkgdir" PREFIX="/usr" install &&
		install -D -m644 LICENSE $pkgdir/usr/share/licenses/dk/LICENSE
}