summaryrefslogtreecommitdiff
path: root/repo/i3wm/i3wm.xibuild
blob: db71c03edc80df34d851a5cadeff119e69364a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

NAME="i3wm"
DESC="Improved dynamic tiling window manager"

MAKEDEPS=" meson bash bison cairo flex libev libxcb libxkbcommon pango pcre perl startup-notification xcb-util-cursor xcb-util-keysyms xcb-util-wm xcb-util-xrm yajl"

PKG_VER=4.20.1
SOURCE="https://i3wm.org/downloads/i3-$PKG_VER.tar.xz"

build() {
	meson --prefix=/usr \
 . output
	meson compile ${JOBS:+-j ${JOBS}} -C output
}

package() {
	DESTDIR="$PKG_DEST" meson install --no-rebuild -C output
}