Go to file
2020-12-05 13:05:25 +01:00
.github/workflows Fix checking out the submodules in the CI 2020-12-05 13:01:46 +01:00
payload@31836812ef Update the root.rpx 2020-12-05 12:48:26 +01:00
source Fix the hash of the root.rpx 2020-12-05 13:05:25 +01:00
.gitignore WIP 2020-10-14 13:54:25 +02:00
.gitmodules WIP 2020-10-15 20:14:00 +02:00
Dockerfile Add a Dockerfile, update the hash in the main.cpp to match the docker output 2020-12-04 12:30:15 +01:00
Makefile Always output a AromaInstaller.rpx 2020-12-04 12:28:52 +01:00
README.md Add a Dockerfile, update the hash in the main.cpp to match the docker output 2020-12-04 12:30:15 +01:00

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 aromainstaller-builder

# make 
docker run -it --rm -v ${PWD}:/project aromainstaller-builder make

# make clean
docker run -it --rm -v ${PWD}:/project aromainstaller-builder make clean