gitextract_utdhukg8/ ├── .gitattributes ├── .gitignore ├── 3ds/ │ ├── SDL/ │ │ ├── PKGBUILD │ │ └── SDL-1.2.15.patch │ ├── SDL_gfx/ │ │ └── PKGBUILD │ ├── SDL_image/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── SDL_mixer/ │ │ └── PKGBUILD │ ├── SDL_ttf/ │ │ └── PKGBUILD │ ├── TinyXML2/ │ │ └── PKGBUILD │ ├── WildMidi/ │ │ ├── PKGBUILD │ │ └── wildmidi-0.4.3.patch │ ├── box2d/ │ │ └── PKGBUILD │ ├── bulletphysics/ │ │ ├── PKGBUILD │ │ └── bulletphysics.patch │ ├── bzip2/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── curl/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── curl-8.4.0.patch │ ├── flac/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── flac-1.3.4.patch │ ├── flite/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── freetype/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── giflib/ │ │ └── PKGBUILD │ ├── jansson/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libarchive/ │ │ ├── PKGBUILD │ │ └── libarchive-3.7.4.patch │ ├── libconfig/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── libconfig.patch │ ├── libfribidi/ │ │ └── PKGBUILD │ ├── libiconv/ │ │ ├── PKGBUILD │ │ └── libiconv-1.17.patch │ ├── libid3tag/ │ │ └── PKGBUILD │ ├── libjpeg-turbo/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libjson-c/ │ │ ├── PKGBUILD │ │ └── json-c-0.16.patch │ ├── liblzma/ │ │ └── PKGBUILD │ ├── libmad/ │ │ └── PKGBUILD │ ├── libmodplug/ │ │ ├── PKGBUILD │ │ └── libmodplug-0.8.9.0.patch │ ├── libogg/ │ │ └── PKGBUILD │ ├── libopus/ │ │ └── PKGBUILD │ ├── libpng/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libsidplay/ │ │ ├── PKGBUILD │ │ └── libsidplay-1.36.60.patch │ ├── libtheora/ │ │ ├── PKGBUILD │ │ └── libtheora-1.2.0.patch │ ├── libvorbisidec/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libxmp/ │ │ └── PKGBUILD │ ├── libzstd/ │ │ ├── PKGBUILD │ │ └── zstd-1.5.5.patch │ ├── lua51/ │ │ └── PKGBUILD │ ├── lz4/ │ │ └── PKGBUILD │ ├── mbedtls/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── mbedtls-2.28.8.patch │ ├── mikmod/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── mpg123/ │ │ ├── PKGBUILD │ │ └── mpg123-1.31.3.patch │ ├── opusfile/ │ │ └── PKGBUILD │ ├── physfs/ │ │ ├── PKGBUILD │ │ └── physfs-3.2.0.patch │ ├── pkg-config/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── pkg-config.in │ ├── wslay/ │ │ └── PKGBUILD │ ├── yaml_cpp/ │ │ └── PKGBUILD │ └── zlib/ │ ├── .gitignore │ └── PKGBUILD ├── 3ds-examples/ │ └── PKGBUILD ├── README.md ├── armv4t/ │ ├── bzip2/ │ │ └── PKGBUILD │ ├── flac/ │ │ ├── PKGBUILD │ │ └── flac-1.3.2.patch │ ├── flite/ │ │ └── PKGBUILD │ ├── freetype/ │ │ └── PKGBUILD │ ├── libconfig/ │ │ ├── PKGBUILD │ │ └── libconfig.patch │ ├── libexpat/ │ │ └── PKGBUILD │ ├── libid3tag/ │ │ └── PKGBUILD │ ├── liblzma/ │ │ └── PKGBUILD │ ├── libmad/ │ │ ├── PKGBUILD │ │ └── libmad-0.15.1b.patch │ ├── libogg/ │ │ └── PKGBUILD │ ├── libpng/ │ │ └── PKGBUILD │ ├── libtheora/ │ │ ├── PKGBUILD │ │ └── libtheora-1.2.0.patch │ ├── libvorbisidec/ │ │ └── PKGBUILD │ ├── libxmp/ │ │ ├── PKGBUILD │ │ └── libxmp.patch │ ├── mikmod/ │ │ └── PKGBUILD │ ├── mpg123/ │ │ ├── PKGBUILD │ │ ├── mpg123-1.25.10.patch │ │ └── mpg123-1.31.3.patch │ ├── pkg-config/ │ │ ├── PKGBUILD │ │ └── pkg-config.in │ └── zlib/ │ └── PKGBUILD ├── calico/ │ └── PKGBUILD ├── citro2d/ │ └── PKGBUILD ├── citro3d/ │ └── PKGBUILD ├── cmake/ │ ├── 3ds/ │ │ ├── 3DS.cmake │ │ ├── Nintendo3DS.cmake │ │ ├── PKGBUILD │ │ └── arm-none-eabi-cmake │ ├── catnip/ │ │ └── PKGBUILD │ ├── common-utils/ │ │ ├── Generic-dkP.cmake │ │ ├── PKGBUILD │ │ ├── dkp-asset-folder.cmake │ │ ├── dkp-custom-target.cmake │ │ ├── dkp-embedded-binary.cmake │ │ ├── dkp-impl-helpers.cmake │ │ ├── dkp-initialize-path.cmake │ │ ├── dkp-linker-utils.cmake │ │ ├── dkp-rule-overrides.cmake │ │ └── dkp-toolchain-common.cmake │ ├── devkita64/ │ │ ├── PKGBUILD │ │ ├── aarch64-none-elf-cmake │ │ └── devkitA64.cmake │ ├── devkitarm/ │ │ ├── PKGBUILD │ │ ├── arm-none-eabi-cmake │ │ ├── devkitARM.cmake │ │ ├── dkp-arm-mode-wrapper │ │ ├── dkp-gba-ds-common.cmake │ │ └── dkp-gba-ds-utils.cmake │ ├── devkitppc/ │ │ ├── PKGBUILD │ │ ├── devkitPPC.cmake │ │ └── powerpc-eabi-cmake │ ├── gamecube/ │ │ ├── GameCube.cmake │ │ ├── NintendoGameCube.cmake │ │ ├── PKGBUILD │ │ └── powerpc-eabi-cmake │ ├── gba/ │ │ ├── GBA.cmake │ │ ├── NintendoGBA.cmake │ │ ├── PKGBUILD │ │ └── arm-none-eabi-cmake │ ├── nds/ │ │ ├── NDS.cmake │ │ ├── NintendoDS.cmake │ │ ├── PKGBUILD │ │ └── arm-none-eabi-cmake │ ├── ogc/ │ │ ├── PKGBUILD │ │ ├── libogc.cmake │ │ └── ogc-common.cmake │ ├── switch/ │ │ ├── NintendoSwitch.cmake │ │ ├── PKGBUILD │ │ ├── Switch.cmake │ │ └── aarch64-none-elf-cmake │ ├── wii/ │ │ ├── NintendoWii.cmake │ │ ├── PKGBUILD │ │ ├── Wii.cmake │ │ └── powerpc-eabi-cmake │ └── wiiu/ │ ├── CafeOS.cmake │ ├── PKGBUILD │ ├── WiiU.cmake │ └── powerpc-eabi-cmake ├── default-arm7/ │ └── PKGBUILD ├── deko3d/ │ └── PKGBUILD ├── devkita64/ │ ├── devkitA64/ │ │ └── PKGBUILD │ ├── devkita64-rules/ │ │ └── PKGBUILD │ └── newlib/ │ └── PKGBUILD ├── devkitarm/ │ ├── devkitARM/ │ │ └── PKGBUILD │ ├── devkitarm-crtls/ │ │ └── PKGBUILD │ ├── devkitarm-rules/ │ │ └── PKGBUILD │ └── newlib/ │ └── PKGBUILD ├── devkitppc/ │ ├── devkitPPC/ │ │ └── PKGBUILD │ ├── devkitppc-crtls/ │ │ └── PKGBUILD │ ├── devkitppc-rules/ │ │ └── PKGBUILD │ └── newlib/ │ └── PKGBUILD ├── dkp-meson-scripts/ │ ├── PKGBUILD │ ├── meson-cross.sh │ └── meson-toolchain.sh ├── dkp-toolchain-vars/ │ ├── 3dsvars.sh │ ├── PKGBUILD │ ├── armv4tvars.sh │ ├── cubevars.sh │ ├── devkita64.sh │ ├── devkitarm.sh │ ├── devkitppc.sh │ ├── ndsvars.sh │ ├── portlibs_prefix.sh │ ├── ppcvars.sh │ ├── switchvars.sh │ ├── wiiuvars.sh │ └── wiivars.sh ├── dswifi/ │ └── PKGBUILD ├── gamecube/ │ ├── SDL/ │ │ ├── PKGBUILD │ │ ├── SDL-1.2.15.patch │ │ └── config.site │ ├── SDL2/ │ │ ├── PKGBUILD │ │ └── SDL2-2.28.5.patch │ ├── SDL2_gfx/ │ │ └── PKGBUILD │ ├── SDL2_image/ │ │ ├── Makefile.in.patch │ │ └── PKGBUILD │ ├── SDL2_mixer/ │ │ ├── PKGBUILD │ │ └── sdl2_mixer-config.cmake.in.patch │ ├── SDL2_ttf/ │ │ └── PKGBUILD │ ├── SDL_gfx/ │ │ ├── PKGBUILD │ │ └── SDL_gfx-2.0.25.patch │ ├── SDL_image/ │ │ └── PKGBUILD │ ├── SDL_mixer/ │ │ ├── PKGBUILD │ │ └── SDL_mixer-1.2.12.patch │ ├── SDL_ttf/ │ │ ├── PKGBUILD │ │ └── SDL_ttf-2.0.11.patch │ ├── freeglut/ │ │ ├── PKGBUILD │ │ └── freeglut-3.6.0.patch │ ├── glu/ │ │ ├── LICENSE │ │ └── PKGBUILD │ ├── opengx/ │ │ └── PKGBUILD │ ├── physfs/ │ │ ├── PKGBUILD │ │ └── physfs-3.2.0.patch │ └── pkg-config/ │ ├── PKGBUILD │ └── pkg-config.in ├── gamecube-examples/ │ └── PKGBUILD ├── gba/ │ └── pkg-config/ │ ├── PKGBUILD │ └── pkg-config.in ├── gba-examples/ │ └── PKGBUILD ├── gp2x/ │ ├── gp2x-core/ │ │ └── PKGBUILD │ ├── gp2x-examples/ │ │ └── PKGBUILD │ ├── libfat/ │ │ └── PKGBUILD │ ├── liborcus/ │ │ └── PKGBUILD │ └── pkg-config/ │ ├── PKGBUILD │ └── pkg-config.in ├── gp32-examples/ │ └── PKGBUILD ├── libctru/ │ └── PKGBUILD ├── libfat/ │ └── PKGBUILD ├── libfilesystem/ │ └── PKGBUILD ├── libgba/ │ └── PKGBUILD ├── libgxflux/ │ ├── PKGBUILD │ └── libgxflux-destdir.patch ├── libmirko/ │ └── PKGBUILD ├── libnds/ │ ├── 0001-fix-within-comment.patch │ └── PKGBUILD ├── libnx/ │ └── PKGBUILD ├── libogc/ │ └── PKGBUILD ├── libtonc/ │ └── PKGBUILD ├── maxmod/ │ └── PKGBUILD ├── nds/ │ ├── bzip2/ │ │ └── PKGBUILD │ ├── freetype/ │ │ └── PKGBUILD │ ├── libexpat/ │ │ └── PKGBUILD │ ├── libmad/ │ │ ├── PKGBUILD │ │ └── libmad-0.15.1b.patch │ ├── libpng/ │ │ └── PKGBUILD │ ├── pkg-config/ │ │ ├── PKGBUILD │ │ └── pkg-config.in │ └── zlib/ │ └── PKGBUILD ├── nds-examples/ │ └── PKGBUILD ├── pkgbuild-scripts/ │ ├── .gitignore │ ├── PKGBUILD │ └── pkgbuild-scripts.install ├── ppc/ │ ├── TinyXML2/ │ │ └── PKGBUILD │ ├── box2d/ │ │ └── PKGBUILD │ ├── brotli/ │ │ ├── PKGBUILD │ │ └── brotli-1.2.0.patch │ ├── bzip2/ │ │ └── PKGBUILD │ ├── faad2/ │ │ └── PKGBUILD │ ├── flac/ │ │ └── PKGBUILD │ ├── freetype/ │ │ └── PKGBUILD │ ├── giflib/ │ │ └── PKGBUILD │ ├── glm/ │ │ ├── PKGBUILD │ │ └── glm-1.0.2-ppc.patch │ ├── harfbuzz/ │ │ └── PKGBUILD │ ├── jansson/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── json-cpp/ │ │ └── PKGBUILD │ ├── libconfig/ │ │ └── PKGBUILD │ ├── libexpat/ │ │ └── PKGBUILD │ ├── libfribidi/ │ │ └── PKGBUILD │ ├── libgd/ │ │ ├── PKGBUILD │ │ └── libgd-2.3.3.patch │ ├── libjpeg-turbo/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── liblzma/ │ │ └── PKGBUILD │ ├── libmad/ │ │ ├── PKGBUILD │ │ ├── frame_length.patch │ │ ├── optimise.diff │ │ └── pkg-config.patch │ ├── libmodplug/ │ │ └── PKGBUILD │ ├── libogg/ │ │ └── PKGBUILD │ ├── libopus/ │ │ └── PKGBUILD │ ├── libpng/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libtheora/ │ │ ├── PKGBUILD │ │ ├── config.guess │ │ └── config.sub │ ├── libvorbis/ │ │ └── PKGBUILD │ ├── libvorbisidec/ │ │ └── PKGBUILD │ ├── libwebp/ │ │ └── PKGBUILD │ ├── libzip/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── lua51/ │ │ └── PKGBUILD │ ├── lz4/ │ │ └── PKGBUILD │ ├── mpg123/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── mxml/ │ │ └── PKGBUILD │ ├── ode/ │ │ └── PKGBUILD │ ├── opusfile/ │ │ └── PKGBUILD │ ├── pkg-config/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── pkg-config.in │ ├── yaml_cpp/ │ │ └── PKGBUILD │ ├── zlib/ │ │ ├── .gitignore │ │ └── PKGBUILD │ └── zstd/ │ ├── PKGBUILD │ └── zstd-1.5.7.patch ├── switch/ │ ├── SDL2/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── SDL2-2.28.5.patch │ ├── SDL2_gfx/ │ │ ├── PKGBUILD │ │ ├── config.guess │ │ └── config.sub │ ├── SDL2_image/ │ │ ├── Makefile.in.patch │ │ └── PKGBUILD │ ├── SDL2_mixer/ │ │ └── PKGBUILD │ ├── SDL2_net/ │ │ └── PKGBUILD │ ├── SDL2_ttf/ │ │ └── PKGBUILD │ ├── TinyXML2/ │ │ └── PKGBUILD │ ├── box2d/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── bulletphysics/ │ │ ├── PKGBUILD │ │ └── bulletphysics.patch │ ├── bzip2/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── curl/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── switch-curl.patch │ ├── dav1d/ │ │ ├── PKGBUILD │ │ └── dav1d.patch │ ├── enet/ │ │ └── PKGBUILD │ ├── ffmpeg/ │ │ ├── PKGBUILD │ │ ├── ffmpeg-7.1.patch │ │ └── tls.patch │ ├── flac/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── flac-1.3.2.patch │ ├── freetype/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── giflib/ │ │ └── PKGBUILD │ ├── glad/ │ │ └── PKGBUILD │ ├── glfw/ │ │ ├── PKGBUILD │ │ └── switch-glfw-3.3.4.patch │ ├── glm/ │ │ └── PKGBUILD │ ├── glu/ │ │ ├── LICENSE │ │ ├── PKGBUILD │ │ └── glu-9.0.3-meson-enable-egl-arg.patch │ ├── harfbuzz/ │ │ └── PKGBUILD │ ├── jansson/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libarchive/ │ │ ├── PKGBUILD │ │ └── libarchive-3.7.2.patch │ ├── libass/ │ │ └── PKGBUILD │ ├── libavif/ │ │ ├── CMakeLists.txt.patch │ │ └── PKGBUILD │ ├── libconfig/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── libconfig.patch │ ├── libdrm_nouveau/ │ │ └── PKGBUILD │ ├── libexpat/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libfribidi/ │ │ └── PKGBUILD │ ├── libgd/ │ │ ├── PKGBUILD │ │ └── libgd-2.2.5-nosyslog.patch │ ├── libjpeg-turbo/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── libjpeg-turbo.patch │ ├── libjson-c/ │ │ ├── PKGBUILD │ │ └── json-c-0.16.patch │ ├── liblzma/ │ │ └── PKGBUILD │ ├── liblzo2/ │ │ └── PKGBUILD │ ├── libmad/ │ │ └── PKGBUILD │ ├── libmikmod/ │ │ ├── PKGBUILD │ │ └── libmikmod-switch-support.patch │ ├── libmodplug/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── libmodplug-0.8.9.0.patch │ ├── libmpeg2/ │ │ └── PKGBUILD │ ├── libmpv/ │ │ ├── PKGBUILD │ │ └── mpv.patch │ ├── libogg/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libopus/ │ │ └── PKGBUILD │ ├── libpcre2/ │ │ └── PKGBUILD │ ├── libplacebo/ │ │ └── PKGBUILD │ ├── libpng/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libsamplerate/ │ │ ├── PKGBUILD │ │ └── libsamplerate-0.1.9.patch │ ├── libsodium/ │ │ └── PKGBUILD │ ├── libssh2/ │ │ ├── PKGBUILD │ │ └── disable-tests.patch │ ├── libtheora/ │ │ ├── PKGBUILD │ │ ├── config.guess │ │ └── config.sub │ ├── libtimidity/ │ │ └── PKGBUILD │ ├── libvorbis/ │ │ ├── .gitignore │ │ └── PKGBUILD │ ├── libvorbisidec/ │ │ └── PKGBUILD │ ├── libvpx/ │ │ ├── PKGBUILD │ │ └── libvpx.patch │ ├── libwebp/ │ │ └── PKGBUILD │ ├── libxml2/ │ │ └── PKGBUILD │ ├── libzstd/ │ │ └── PKGBUILD │ ├── lua51/ │ │ └── PKGBUILD │ ├── lwext4/ │ │ ├── PKGBUILD │ │ └── lwext4-1.0.0.patch │ ├── lz4/ │ │ └── PKGBUILD │ ├── mbedtls/ │ │ ├── PKGBUILD │ │ └── mbedtls-2.28.10.patch │ ├── mesa/ │ │ ├── OpenGLConfig.cmake │ │ ├── PKGBUILD │ │ ├── glX_XML.py.patch │ │ ├── gl_XML.py.patch │ │ └── switch-mesa-20.1.0-5.patch │ ├── miniupnpc/ │ │ ├── PKGBUILD │ │ └── miniupnpc.patch │ ├── mpg123/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── mpg123-1.31.3.patch │ ├── mupdf/ │ │ ├── PKGBUILD │ │ └── mupdf.patch │ ├── ntfs-3g/ │ │ ├── PKGBUILD │ │ └── ntfs-3g-2022.10.3.patch │ ├── ode/ │ │ └── PKGBUILD │ ├── oniguruma/ │ │ └── PKGBUILD │ ├── openal-soft/ │ │ ├── PKGBUILD │ │ └── avoid-readlink.patch │ ├── opusfile/ │ │ └── PKGBUILD │ ├── physfs/ │ │ ├── PKGBUILD │ │ └── physfs-3.2.0.patch │ ├── pkg-config/ │ │ ├── .gitignore │ │ ├── PKGBUILD │ │ └── pkg-config.in │ ├── smpeg2/ │ │ ├── PKGBUILD │ │ ├── config.guess │ │ ├── config.sub │ │ └── smpeg2-2.0.0.patch │ ├── wslay/ │ │ └── PKGBUILD │ ├── xxhash/ │ │ └── PKGBUILD │ ├── zlib/ │ │ ├── .gitignore │ │ └── PKGBUILD │ └── zziplib/ │ ├── PKGBUILD │ └── zziplib-0.13.78.patch ├── switch-examples/ │ └── PKGBUILD ├── wii/ │ ├── SDL/ │ │ ├── PKGBUILD │ │ ├── SDL-1.2.15.patch │ │ └── config.site │ ├── SDL2/ │ │ ├── PKGBUILD │ │ └── SDL2-2.28.5.patch │ ├── SDL2_gfx/ │ │ └── PKGBUILD │ ├── SDL2_image/ │ │ ├── Makefile.in.patch │ │ └── PKGBUILD │ ├── SDL2_mixer/ │ │ ├── PKGBUILD │ │ └── sdl2_mixer-config.cmake.in.patch │ ├── SDL2_ttf/ │ │ └── PKGBUILD │ ├── SDL_gfx/ │ │ └── PKGBUILD │ ├── SDL_image/ │ │ └── PKGBUILD │ ├── SDL_mixer/ │ │ ├── PKGBUILD │ │ └── SDL_mixer-1.2.12.patch │ ├── SDL_ttf/ │ │ ├── PKGBUILD │ │ └── SDL_ttf-2.0.11.patch │ ├── freeglut/ │ │ ├── PKGBUILD │ │ └── freeglut-3.6.0.patch │ ├── glu/ │ │ ├── LICENSE │ │ └── PKGBUILD │ ├── opengx/ │ │ └── PKGBUILD │ ├── physfs/ │ │ ├── PKGBUILD │ │ └── physfs-3.2.0.patch │ └── pkg-config/ │ ├── PKGBUILD │ └── pkg-config.in └── wii-examples/ └── PKGBUILD