Last active
June 5, 2019 09:12
-
-
Save irgendwie/4e60ae24455006ebbfcb0a7be316928a to your computer and use it in GitHub Desktop.
xubuntu 18.04 LTS dependencies
This file contains 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
#!/bin/bash | |
# | |
# vanilla speed-dreams | |
# | |
sudo apt install cmake g++ libopenscenegraph-dev libjpeg-dev \ | |
libpng-dev libopenal-dev libogg-dev libvorbis-dev libsdl2-dev \ | |
libexpat1-dev libplib-dev libenet-dev | |
# boost | |
sudo apt install libboost-dev libboost-system-dev | |
# protobuf | |
sudo apt install protobuf-compiler | |
# | |
# genode 16.08 | |
# | |
sudo apt install git subversion make expect gcc g++ pkg-config syslinux-utils | |
# qemu | |
sudo apt install libvdeplug-dev vde2 libglib2.0-dev libpixman-1-dev flex bison | |
wget https://download.qemu.org/qemu-4.0.0.tar.xz | |
tar xJf qemu-4.0.0.tar.xz | |
cd qemu-4.0.0 | |
./configure --target-list=arm-softmmu,x86_64-softmmu --enable-vde | |
make | |
sudo make install | |
# mosquitto | |
sudo apt install mosquitto mosquitto-clients |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment