blob: abdaf3ede3ab338d41177398fbd513f0f3408093 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Contributor: Lex Black <autumn-wind@web.de>
# Contributor: Tmplt <tmplt@dragons.rocks>
pkgname=katriawm
pkgver=23.08
pkgrel=1
pkgdesc="non-reparenting, dynamic window manager for X11 with decorations"
arch=("i686" "x86_64")
url="https://www.uninformativ.de/git/katriawm/file/README.html"
license=("MIT")
makedepends=("git")
depends=("libx11" "libxft" "libxrandr")
source=("git+https://www.uninformativ.de/git/katriawm.git#tag=v${pkgver}")
sha256sums=('SKIP')
prepare() {
cd "${pkgname}/src"
# Read custom config headers from $XDG_CONFIG_HOME/katria{wm,bi}-config.h
config=${XDG_CONFIG_HOME:-~/.config/}
if [[ -f "${config}/katriawm-config.h" ]]; then
msg "Using custom config.h for katriawm(1)"
cp -f "${config}/katriawm-config.h" core/config.h
fi
if [[ -f "${config}/katriabi-config.h" ]]; then
msg "Using custom config.h for katriabi(1)"
cp -f "${config}/katriabi-config.h" barinfo/config.h
fi
}
build() {
cd "${pkgname}/src"
make prefix=/usr
}
package() {
cd "${pkgname}/src"
make prefix=/usr DESTDIR=${pkgdir} install
install -Dm644 ../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|