forked from alnux/repo
18 lines
390 B
Text
Executable file
18 lines
390 B
Text
Executable file
wget https://xkbcommon.org/download/libxkbcommon-1.3.0.tar.xz
|
|
tar -xf libxkbcommon-1.3.0.tar.xz
|
|
cd lixkbcommon-1.3.0
|
|
export DESTDIR="$1"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib \
|
|
-Ddefault_library=both \
|
|
-Denable-docs=false \
|
|
-Denable-wayland=true \
|
|
-Denable-x11=false \
|
|
-Denable-xkbregistry=false \
|
|
. output
|
|
|
|
ninja -C output
|
|
ninja -C output install
|
|
|