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

List building dependencies for OpenSUSE #137

Merged
merged 1 commit into from
Dec 24, 2023
Merged
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ On Fedora the following packages are needed:
sudo dnf install cmake SDL2-devel g++ npm patch perl libpng-devel
```

On OpenSUSE (Tumbleweed) the following packages are needed:

```sh
sudo zypper install cmake libSDL2-devel gcc-c++ gcc npm libpng16-devel patch
```

Then install the `lv_font_conv` executable to the InfiniSim source directory (will be installed at `node_modules/.bin/lv_font_conv`)

```sh
Expand All @@ -65,6 +71,13 @@ source .venv/bin/activate
pip install wheel Pillow
```

Optionally, depending on your distro, it may also serve the Pip package as official native installation packages:

```sh
# OpenSUSE Tumbleweed
sudo zypper install python311-Pillow
```

## Configure and Build

In the most basic configuration tell cmake to configure the project and build it with the following two commands:
Expand Down
Loading