summaryrefslogtreecommitdiff
path: root/repo/x11/xkeyboardconfig.xibuild
blob: 71a8b9bb18bc228a5da6b00604d040c5a943d640 (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
#!/bin/bash

MAKEDEPS=(meson ninja)
DEPS=(xorg-libs)

PKG_VER=2.35.1
SOURCE=https://www.x.org/pub/individual/data/xkeyboard-config/xkeyboard-config-$PKG_VER.tar.xz

DESC="X keyboard configuration files"

prepare () {
    sed -i -E 's/(ln -s)/\1f/' rules/meson.build
}

build () {
    mkdir build &&
    cd    build &&

    meson --prefix=$XORG_PREFIX --buildtype=release .. &&
    ninja
}

package () {
    DESTDIR=$PKG_DEST ninja install
}