Build and install Input Leap on Debian 13

Input Leap is KVM software created after Barrier death.

This is the wiki page for building Input Leap but with no Debian 13 section. 😭

If you don't want to waste your time, download last compiled binaries HERE.

Install building packages

sudo apt-get install -y \
  cmake \
  g++ \
  git \
  libavahi-compat-libdnssd-dev \
  libcurl4-openssl-dev \
  libice-dev \
  libsm-dev \
  libssl-dev \
  libxinerama-dev \
  libxrandr-dev \
  libxtst-dev \
  libxkbcommon-dev \
  libglib2.0-dev \
  ninja-build \
  qtdeclarative5-dev \
  qttools5-dev \
  qt6-tools-dev \
  meson

Clone repo

mkdir ~/gitrepos
cd ~/gitrepos
git clone --recurse-submodules https://github.com/input-leap/input-leap.git

Build binaries

cd ~/gitrepos/input-leap
cmake -S. -Bbuild
cmake --build build

Install input-leap

sudo cmake --build build --target install (without prefix will be installed in /usr/local)