21 lines
716 B
Bash
21 lines
716 B
Bash
# Template file for 'bspwm'
|
|
pkgname=bspwm
|
|
version=0.9.1
|
|
revision=1
|
|
makedepends="libxcb-devel xcb-util-devel xcb-util-wm-devel"
|
|
short_desc="A tiling window manager based on binary space partitioning"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="BSD"
|
|
homepage="https://github.com/baskerville/bspwm"
|
|
distfiles="https://github.com/baskerville/bspwm/archive/${version}.tar.gz"
|
|
checksum=02bb58a307acdec242eb4b8a62764ed53d01c30474dfb1bc09812d943773bb85
|
|
|
|
do_build() {
|
|
make CC=$CC
|
|
}
|
|
do_install() {
|
|
make PREFIX=/usr DESTDIR=${DESTDIR} install
|
|
vlicense LICENSE
|
|
vinstall contrib/bash_completion 644 usr/share/bash-completion/completions bspc
|
|
vinstall contrib/zsh_completion 644 usr/share/zsh/site-functions _bspc
|
|
}
|