Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Rocky Linux dependencies to build.md #5187

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions doc/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,27 @@ sudo dnf install java-devel
```


#### Rocky Linux

```bash
# enable RPM fusion release, 8 for Rocky 8.x and 9 for Rocky 9.x
sudo dnf install https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm

# enable extra packages with epel-release
sudo dnf install epel-release

# add repo for epel-multimedia
sudo dnf config-manager --add-repo=https://negativo17.org/repos/epel-multimedia.repo

# enable powertools
sudo dnf config-manager --set-enabled powertools

# install dependencies
sudo dnf install ffmpeg adb android-tools wget gcc git pkg-config meson ninja-build \
SDL2 SDL2-devel libavcodec-devel libavdevice-devel libavformat-devel \
libavutil-devel libusb-devel libswresample-devel libusb-devel
```


### Windows

Expand Down