From 1cba87545cdc8c8e503df8fc5da321d2817a90db Mon Sep 17 00:00:00 2001 From: GoboII <38966808+GoboII@users.noreply.github.com> Date: Sat, 23 Apr 2022 19:04:39 -0700 Subject: [PATCH] `apt-get` has been largely superseded by `apt` in most recent debian-based distributions including Ubuntu and Mint. --- Building-for-Linux.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 4744817..944c097 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -5,20 +5,20 @@ 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: * [SDL2](https://www.libsdl.org/download-2.0.php) - - Deb: `apt-get install libsdl2-dev` + - Deb: `apt install libsdl2-dev` - Arch: `pacman -S sdl2` - Fedora: `dnf install SDL2-devel` - OpenSUSE: `zypper in libSDL2-devel` * [Qt](http://qt-project.org/downloads) 5.9+ - Only 5.9+ versions are tested. Lower version might or might not work. See the section **Install new Qt version** below if your distro does not provide a sufficient version of Qt - - Deb: `apt-get install qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev` - - You may also need `apt-get install libqt5multimedia5-plugins` to get the camera working + - Deb: `apt install qtbase5-dev libqt5opengl5-dev qtmultimedia5-dev` + - You may also need `apt install libqt5multimedia5-plugins` to get the camera working - Arch: `pacman -S qt5` - Fedora: `dnf install qt5-qtmultimedia-devel` - OpenSUSE: `zypper in libQt5Multimedia5 libqt5-qtmultimedia-devel libQt5Concurrent-devel` * **Optional dependencies needed for HLE AAC Decoding on Linux** - FDK-AAC - * Deb: `apt-get install libfdk-aac-dev` + * Deb: `apt install libfdk-aac-dev` * Arch: `pacman -S libfdk-aac` * Fedora: `dnf install fdk-aac-devel` * OpenSUSE: `zypper in fdk-aac-devel` @@ -29,17 +29,17 @@ You'll need to download and install the following to build Citra: * OpenSUSE Tumbleweed: `zypper in ffmpeg-4 ffmpeg-4-libavcodec-devel` * Compiler: GCC or Clang. You only need one of these two: * GCC 7.0+. - - Deb: `apt-get install build-essential` + - Deb: `apt install build-essential` - Arch: `pacman -S base-devel` - Fedora: `dnf install gcc-c++` - OpenSUSE: `zypper in gcc-c++` * [Clang](https://github.com/llvm-mirror/clang) 5.0+ - - Deb: `apt-get install clang clang-format libc++-dev` (in some distros, clang-5.0). + - Deb: `apt install clang clang-format libc++-dev` (in some distros, clang-5.0). - Arch: `pacman -S clang`, `libc++` is in the AUR. Use pacaur or yaourt to install it. - Fedora: `dnf install clang libcxx-devel` - OpenSUSE: `zypper in clang` * [CMake](http://www.cmake.org/) 3.8+ - - Deb: `apt-get install cmake` + - Deb: `apt install cmake` - Arch: `pacman -S cmake` - Fedora: `dnf install cmake` - OpenSUSE: `zypper in cmake extra-cmake-modules`