"progress"

This commit is contained in:
2026-02-28 09:55:21 -06:00
parent 99d030003c
commit df106e3988
204 changed files with 285 additions and 205 deletions

View File

@@ -0,0 +1,5 @@
FROM devkitpro/devkitppc
RUN apt update && \
apt install -y python3 python3-pip python3-polib python3-pil python3-dotenv python3-pyqt5 python3-opengl && \
dkp-pacman -S --needed --noconfirm gamecube-sdl2 ppc-liblzma ppc-libzip

10
docker/dolphin/meta.xml Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Dusk</name>
<version>1.00</version>
<release_date></release_date>
<coder>YouWish</coder>
<short_description>Dusk game</short_description>
<long_description>No description yet.</long_description>
<ahb_access/>
</app>

7
docker/psp/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM pspdev/pspdev:latest
WORKDIR /workdir
RUN apk add --no-cache \
python3 \
py3-pip
VOLUME ["/workdir"]
CMD [ "/bin/bash", "-c", "./scripts/build-psp.sh" ]