60 lines
1.6 KiB
Bash
60 lines
1.6 KiB
Bash
# Template file for 'libxkbcommon'
|
|
pkgname=libxkbcommon
|
|
version=1.3.1
|
|
revision=1
|
|
wrksrc="${pkgname}-${pkgname#lib}-${version}"
|
|
build_style=meson
|
|
# b_ndebug=false is needed to pass the test suite, as it relies on side effects
|
|
# in the arguments of assert calls.
|
|
configure_args="-Denable-x11=true -Denable-docs=false
|
|
-Denable-wayland=true -Denable-xkbregistry=true -Db_ndebug=false"
|
|
hostmakedepends="pkg-config bison wayland-protocols wayland-devel"
|
|
makedepends="xkeyboard-config libxcb-devel wayland-devel wayland-protocols
|
|
xorgproto libxml2-devel"
|
|
depends="xkeyboard-config"
|
|
short_desc="Library to handle keyboard descriptions"
|
|
maintainer="Isaac Freund <mail@isaacfreund.com>"
|
|
license="MIT"
|
|
homepage="https://xkbcommon.org/"
|
|
distfiles="https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-${version}.tar.gz"
|
|
checksum=8eda6782c6ed4b83296521f2f7e6bea88aba76d49c39fb4fce0f8d355a9181ce
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
libxkbcommon-x11_package() {
|
|
short_desc+=" - X11 support"
|
|
pkg_install() {
|
|
vmove "usr/lib/*x11*.so.*"
|
|
}
|
|
}
|
|
|
|
libxkbregistry_package() {
|
|
short_desc="XKB API to query available rules, models, layouts, variants and options"
|
|
pkg_install() {
|
|
vmove "usr/lib/libxkbregistry.so.*"
|
|
}
|
|
}
|
|
|
|
libxkbcommon-devel_package() {
|
|
depends="${sourcepkg}-x11>=${version}_${revision}
|
|
libxkbregistry>=${version}_${revision}
|
|
${sourcepkg}>=${version}_${revision} libxcb-devel"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libxkbcommon-tools_package() {
|
|
short_desc+=" - utilities"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/libexec
|
|
vmove usr/share/man
|
|
}
|
|
}
|