summaryrefslogtreecommitdiff
path: root/repo/xkeyboardconfig/xkeyboardconfig.xibuild
blob: 07cfa64af79b0a9dc15ce46fb8478d9f65fed2fe (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/sh

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=/usr --buildtype=release .. &&
    ninja
}

package () {
    DESTDIR=$PKG_DEST ninja install
}