opt/libxkbcommon/Pkgfile

22 lines
500 B
Plaintext
Raw Normal View History

2017-04-15 16:24:56 +02: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 10:40:50 +01:00
version=0.10.0
2017-04-15 16:24:56 +02:00
release=1
2019-10-25 17:06:31 +02:00
source=(https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-$version.tar.gz)
2017-04-15 16:24:56 +02:00
build() {
2019-10-25 17:06:31 +02:00
cd libxkbcommon-xkbcommon-$version
2017-04-15 16:24:56 +02:00
2019-10-25 17:06:31 +02:00
meson build \
2017-04-15 16:24:56 +02:00
--prefix=/usr \
2019-10-25 17:06:31 +02:00
-Denable-wayland=false \
-Denable-docs=false
2017-04-15 16:24:56 +02:00
2019-10-25 17:06:31 +02:00
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
2017-04-15 16:24:56 +02:00
}