You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.2 KiB

5 years ago
# Install next packages
## for usage
corrade should be installed
```
5 years ago
sudo dnf install openal-soft \
5 years ago
SDL2 \
5 years ago
freeglut-devel \
5 years ago
glfw
```
```
sudo zypper install openal-soft \
SDL2 \
freeglut-devel \
libglfw3
```
5 years ago
## for build and devel package
corrade-devel should be installed
```
5 years ago
sudo dnf install git gcc-c++ cmake make rpmdevtools \
5 years ago
openal-soft-devel \
SDL2-devel \
freeglut-devel \
glfw-devel
```
```
sudo zypper install git gcc-c++ cmake make rpmdevtools rpm-build \
openal-soft-devel \
libSDL2-devel \
freeglut-devel \
libglfw-devel
```
5 years ago
## on centos
5 years ago
### for glfw and glfw-devel add EPEL repo:
5 years ago
```
5 years ago
sudo dnf install --nogpgcheck https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
5 years ago
```
## on openSUSE
### for SDL2 and libSDL2-devel add games repo:
```
sudo zypper addrepo https://download.opensuse.org/repositories/games/openSUSE_Tumbleweed/games.repo
sudo zypper refresh
```