1
0
mirror of synced 2024-09-24 03:28:24 +02:00

build: Added dependency download script for OpenSUSE Tumbleweed (#1612)

## Add dependency download script for OpenSUSE Tumbleweed.

### Testing
After installing the dependencies, I have managed to successfully
compile the project as described in the building instructions:
https://github.com/WerWolv/ImHex/blob/master/dist/compiling/linux.md

I have tested the script on a fresh installations of the OpenSUSE:
- Tumbleweed Server
- Tumbleweed Generic Desktop

### Note
Dependencies added in the script are based off of scripts for other
Linux distributions.
Because of that, some download dependencies might not be necessary (or
could be already included by other packages), so it is very much
possible that some of them could be removed.
This commit is contained in:
Kihau 2024-03-28 22:24:10 +01:00 committed by GitHub
parent f084bc4147
commit 32ad8ddb53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

19
dist/get_deps_tumbleweed.sh vendored Executable file
View File

@ -0,0 +1,19 @@
#!/usr/bin/env sh
zypper install \
cmake \
ninja \
gcc12 \
gcc12-c++ \
freetype2-devel \
libcurl-devel \
dbus-1-devel \
file-devel \
Mesa-libGL-devel \
libglfw-devel \
mbedtls-devel \
gtk3-devel \
libzstd-devel \
zlib-devel \
bzip3-devel \
xz-devel