Last active
December 11, 2022 22:24
-
-
Save qrkourier/fc2621e324b77b3c547468d010e6f936 to your computer and use it in GitHub Desktop.
build/install x11spice on Debian
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -euo pipefail | |
sudo apt install \ | |
build-essential \ | |
libspice-server1 \ | |
xutils-dev \ | |
libxcb-damage0-dev \ | |
libxcb-xtest0-dev \ | |
libxcb-shm0-dev \ | |
libxcb-util-dev \ | |
libxcb-xkb-dev \ | |
libspice-client-gtk-3.0-dev \ | |
libspice-server-dev \ | |
dh-autoreconf | |
git clone https://gitlab.freedesktop.org/spice/x11spice.git | |
cd ./x11spice | |
./autogen.sh | |
make | |
sudo make install | |
which x11spice |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment