this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Readme improvements (Ubuntu 22.04, 24.04) (#2548)

* Ubuntu 22.04

* Ubuntu 22.04 tweaks; Ubuntu 24.04

authored by

Alice and committed by
GitHub
faf5dd0e 86d6df1d

+26 -17
+26 -17
README.md
··· 16 16 - [with Visual Studio 2017](#with-visual-studio-2017) 17 17 - [with MinGW](#with-mingw) 18 18 - [Linux](#linux) 19 - - [Ubuntu 14.04](#ubuntu-1404) 20 - - [Ubuntu 18.04](#ubuntu-1804) 19 + - [Ubuntu 22.04 (Jammy Jellyfish)](#ubuntu-2204-jammy-jellyfish) 20 + - [Ubuntu 24.04 (Noble Numbat)](#ubuntu-2404-noble-numbat) 21 21 - [Arch](#arch) 22 22 - [Fedora 36](#fedora-36) 23 23 - [Fedora 40](#fedora-40) ··· 116 116 ``` 117 117 118 118 ## Linux 119 - ### Ubuntu 14.04 120 - run the following commands in the Terminal 119 + 120 + ### Ubuntu 22.04 (Jammy Jellyfish) 121 + 122 + Run the following commands from a terminal: 123 + 121 124 ``` 122 - sudo apt-get install git cmake ruby-full libgles1-mesa-dev libglu-dev -y 125 + # Need to install the latest CMake from https://apt.kitware.com/ 126 + test -f /usr/share/doc/kitware-archive-keyring/copyright || 127 + wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | sudo tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null 128 + echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | sudo tee /etc/apt/sources.list.d/kitware.list >/dev/null 129 + sudo apt-get update 130 + test -f /usr/share/doc/kitware-archive-keyring/copyright || 131 + sudo rm /usr/share/keyrings/kitware-archive-keyring.gpg 132 + sudo apt-get install kitware-archive-keyring 133 + 134 + sudo apt update && sudo apt -y install build-essential cmake git libpipewire-0.3-dev libwayland-dev libsdl2-dev ruby-dev libglvnd-dev libglu1-mesa-dev freeglut3-dev libcurl4-openssl-dev 123 135 git clone --recursive https://github.com/nesbox/TIC-80 && cd TIC-80/build 124 - cmake .. 125 - make -j4 136 + cmake -DBUILD_SDLGPU=On -DBUILD_STUB=On .. --fresh && cmake --build . --parallel 126 137 ``` 127 138 128 - to install the latest CMake: 129 - ``` 130 - wget "https://cmake.org/files/v3.12/cmake-3.12.0-Linux-x86_64.sh" 131 - sudo sh cmake-3.12.0-Linux-x86_64.sh --skip-license --prefix=/usr 132 - ``` 133 139 Install with [Install instructions](#install-instructions) 134 140 135 - ### Ubuntu 18.04 141 + 142 + ### Ubuntu 24.04 (Noble Numbat) 143 + 144 + Run the following commands from a terminal: 136 145 137 - run the following commands in the Terminal 138 146 ``` 139 - sudo apt-get install g++ git cmake ruby-full libglvnd-dev libglu1-mesa-dev freeglut3-dev libasound2-dev -y 147 + sudo apt update && sudo apt -y install build-essential cmake git libpipewire-0.3-dev libwayllrubland-dev libsdl2-dev ruby-dev libcurl4-openssl-dev libglvnd-dev libglu1-mesa-dev freeglut3-dev 140 148 git clone --recursive https://github.com/nesbox/TIC-80 && cd TIC-80/build 141 - cmake .. 142 - make -j4 149 + cmake -DBUILD_SDLGPU=On -DBUILD_STUB=On .. --fresh && cmake --build . --parallel 143 150 ``` 151 + 152 + Install with [Install instructions](#install-instructions) 144 153 145 154 146 155 ### Arch