CURLWrapperModule/README.md

31 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2023-01-20 19:43:52 +01:00
[![CI-Release](https://github.com/wiiu-env/CURLWrapperModule/actions/workflows/ci.yml/badge.svg)](https://github.com/wiiu-env/CURLWrapperModule/actions/workflows/ci.yml)
Aroma Module that (hopefully) exports all functions of libcurl (Currently targeting: curl 8.0.1)
2023-01-20 19:43:52 +01:00
## Usage
(`[ENVIRONMENT]` is a placeholder for the actual environment name.)
1. Copy the file `CURLWrapperModule.wms` into `sd:/wiiu/environments/[ENVIRONMENT]/modules`.
2. Use [libcurlwrapper](https://github.com/wiiu-env/libcurlwrapper)
## Building using the Dockerfile
It's possible to use a docker image for building. This way you don't need anything installed on your host system.
```
# Build docker image (only needed once)
docker build . -t curlwrappermodule-builder
# make
docker run -it --rm -v ${PWD}:/project curlwrappermodule-builder make
# make clean
docker run -it --rm -v ${PWD}:/project curlwrappermodule-builder make clean
```
2024-05-06 16:25:24 +02:00
The bundled Dockerfile creates a module with this version: `libcurl/8.7.1 mbedTLS/2.28.8 zlib/1.3`
2023-01-20 19:43:52 +01:00
## Format the code via docker
2023-03-16 16:04:35 +01:00
`docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src -i`