libromfs_wiiu/README.md

24 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2022-02-13 12:12:26 +01:00
[![Publish Docker Image](https://github.com/wiiu-env/libromfs_wiiu/actions/workflows/push_image.yml/badge.svg)](https://github.com/wiiu-env/libromfs_wiiu/actions/workflows/push_image.yml)
2021-01-01 01:43:50 +01:00
# libromfs
2022-02-13 12:06:08 +01:00
Ported from [libnx](https://github.com/switchbrew/libnx/blob/e5ae43f4c2cca5320559d9c27ce256b2901aed40/nx/source/runtime/devices/romfs_dev.c)
## Building
Make you to have [wut](https://github.com/devkitPro/wut/) installed and use the following command for build:
```
make install
```
## Use this lib in Dockerfiles.
A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile.
```
[...]
2023-04-01 08:12:41 +02:00
COPY --from=ghcr.io/wiiu-env/libromfs_wiiu:[tag] /artifacts $DEVKITPRO
2022-02-13 12:06:08 +01:00
[...]
```
2023-04-01 08:12:41 +02:00
Replace [tag] with a tag you want to use, a list of tags can be found [here](https://github.com/orgs/wiiu-env/packages/container/libromfs_wiiu/versions).
2022-02-13 12:06:08 +01:00
It's highly recommended to pin the version to the **latest date** instead of using `latest`.
2022-02-13 12:12:26 +01:00
## Format the code via docker
2023-04-01 08:12:41 +02:00
`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include -i`