opt/libxkbcommon/Pkgfile

22 lines
500 B
Plaintext
Raw Normal View History

2017-04-16 00:24:56 +10:00
# Description: A library to handle keyboard descriptions.
# URL: https://xkbcommon.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: xkeyboard-config
name=libxkbcommon
2020-02-12 20:40:50 +11:00
version=0.10.0
2017-04-16 00:24:56 +10:00
release=1
2019-10-26 02:06:31 +11:00
source=(https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-$version.tar.gz)
2017-04-16 00:24:56 +10:00
build() {
2019-10-26 02:06:31 +11:00
cd libxkbcommon-xkbcommon-$version
2017-04-16 00:24:56 +10:00
2019-10-26 02:06:31 +11:00
meson build \
2017-04-16 00:24:56 +10:00
--prefix=/usr \
2019-10-26 02:06:31 +11:00
-Denable-wayland=false \
-Denable-docs=false
2017-04-16 00:24:56 +10:00
2019-10-26 02:06:31 +11:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2017-04-16 00:24:56 +10:00
}