32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libxkbcommon"
|
|
PKG_VERSION="1.4.1"
|
|
PKG_SHA256="943c07a1e2198026d8102b17270a1f406e4d3d6bbc4ae105b9e1b82d7d136b39"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://xkbcommon.org"
|
|
PKG_URL="https://xkbcommon.org/download/${PKG_NAME}-${PKG_VERSION}.tar.xz"
|
|
PKG_DEPENDS_TARGET="toolchain xkeyboard-config libxml2"
|
|
PKG_LONGDESC="xkbcommon is a library to handle keyboard descriptions."
|
|
|
|
PKG_MESON_OPTS_TARGET="-Denable-docs=false"
|
|
|
|
if [ "${DISPLAYSERVER}" = "x11" ]; then
|
|
PKG_MESON_OPTS_TARGET+=" -Denable-x11=true \
|
|
-Denable-wayland=false"
|
|
elif [ "${DISPLAYSERVER}" = "wl" ]; then
|
|
PKG_MESON_OPTS_TARGET+=" -Denable-x11=true \
|
|
-Denable-wayland=true \
|
|
-Dxkb-config-root=/usr/share/X11/xkb"
|
|
else
|
|
PKG_MESON_OPTS_TARGET+=" -Denable-x11=false \
|
|
-Denable-wayland=false"
|
|
fi
|
|
|
|
pre_configure_target() {
|
|
if [ "${DISPLAYSERVER}" = "x11" ]; then
|
|
TARGET_LDFLAGS="${LDFLAGS} -lXau -lxcb"
|
|
fi
|
|
}
|