7d58192c90
Packages are going to be built and submitted manually. %ci:no-build
24 lines
960 B
Bash
24 lines
960 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.freedesktop.org/wiki/Software/XKeyboardConfig/
|
|
TERMUX_PKG_DESCRIPTION="X keyboard configuration files"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=2.32
|
|
TERMUX_PKG_REVISION=2
|
|
TERMUX_PKG_SRCURL=https://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/xkeyboard-config-${TERMUX_PKG_VERSION}.tar.bz2
|
|
TERMUX_PKG_SHA256=1feee317ba39b91902b0cbd2987c0c73e6afbfc8f4c096367a5c86c216c036a8
|
|
TERMUX_PKG_PLATFORM_INDEPENDENT=true
|
|
TERMUX_PKG_BUILD_DEPENDS="libx11"
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--with-xkb-rules-symlink=xorg
|
|
--with-xkb-base=${TERMUX_PREFIX}/share/X11/xkb
|
|
--enable-compat-rules=yes
|
|
"
|
|
|
|
termux_step_post_make_install() {
|
|
if [ -f "${TERMUX_PREFIX}/share/pkgconfig/xkeyboard-config.pc" ]; then
|
|
mkdir -p "${TERMUX_PREFIX}/lib/pkgconfig" || exit 1
|
|
mv -f "${TERMUX_PREFIX}/share/pkgconfig/xkeyboard-config.pc" "${TERMUX_PREFIX}/lib/pkgconfig/xkeyboard-config.pc" || exit 1
|
|
fi
|
|
}
|