diff --git a/Building-For-Linux.md b/Building-For-Linux.md index 15d50d0..e53c8bf 100644 --- a/Building-For-Linux.md +++ b/Building-For-Linux.md @@ -4,9 +4,9 @@ An unofficial PKGBUILD of Citra is available for Arch Linux on the [AUR](https:/ You'll need to download and install the following to build Citra: -* [GLFW](http://www.glfw.org/download.html) (tested with v3.0.4) - * Deb: You should probably build this from source. Directions are below. - * Arch: `pacman -S glfw` +* [SDL2](https://www.libsdl.org/download-2.0.php) + * Deb: `apt-get install sdl2` + * Arch: `pacman -S sdl2` * [Qt](http://qt-project.org/downloads) * Deb: `apt-get install qtbase5-dev libqt5opengl5-dev` or `apt-get install libqt4-dev libqt4-opengl-dev` * Arch: `pacman -S qt5` or `pacman -S qt4` @@ -17,21 +17,6 @@ You'll need to download and install the following to build Citra: * Deb: `apt-get install cmake` * Arch: `pacman -S cmake` -### Building GLFW: - -On Debian, install dependencies with `apt-get install xorg-dev libglu1-mesa-dev`. Then compile using these commands from a terminal: - -``` -git clone https://github.com/glfw/glfw.git -cd glfw -mkdir build && cd build -cmake -DBUILD_SHARED_LIBS=ON .. -make -sudo make install -``` - -If you're on Arch Linux, you can use `pacman -S glfw` instead. - ### Cloning Citra in Git: ```