├── .gitignore ├── COPYING ├── README.md ├── SDL ├── Makefile ├── distinfo ├── files │ ├── KOSMakefile.mk │ ├── SDL_config_dreamcast.h │ ├── SDL_dcaudio.c │ ├── SDL_dcaudio.h │ ├── SDL_dcevents.c │ ├── SDL_dcevents_c.h │ ├── SDL_dcmouse.c │ ├── SDL_dcmouse_c.h │ ├── SDL_dcvideo.c │ ├── SDL_dcvideo.h │ ├── SDL_syscdrom.c │ ├── SDL_syscond.c │ ├── SDL_syscond_c.h │ ├── SDL_sysjoystick.c │ ├── SDL_sysmutex.c │ ├── SDL_sysmutex_c.h │ ├── SDL_syssem.c │ ├── SDL_syssem_c.h │ ├── SDL_systhread.c │ ├── SDL_systhread_c.h │ ├── SDL_systimer.c │ ├── aica.c │ └── aica.h └── pkg-descr ├── SDL_ttf ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── cglm ├── Makefile └── pkg-descr ├── config.mk ├── curl ├── Makefile ├── distinfo ├── files │ ├── CMakeLists.txt │ └── FindPolarSSL.cmake └── pkg-descr ├── expat ├── Makefile ├── distinfo └── pkg-descr ├── freetype ├── Makefile ├── distinfo └── pkg-descr ├── libADX ├── Makefile └── pkg-descr ├── libAL ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libGL ├── Makefile └── pkg-descr ├── libKGL ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libbearssl ├── Makefile └── pkg-descr ├── libbz2 ├── Makefile ├── distinfo ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libchipmunk ├── Makefile └── pkg-descr ├── libcmark ├── Makefile └── pkg-descr ├── libconio ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libdcplib ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libfastmem ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libimageload ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libjimtcl ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libjpeg ├── Makefile ├── distinfo ├── files │ ├── KOSMakefile.mk │ ├── jpeg.h │ ├── kos_img.c │ └── kos_texture.c └── pkg-descr ├── libkmg ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libkosh ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libmodplug ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libmp3 ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libmpeg ├── Makefile ├── distinfo ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libogg ├── Makefile ├── distinfo ├── files │ ├── KOSMakefile.mk │ └── config_types.h └── pkg-descr ├── liboggvorbisplay ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libopusplay ├── Makefile └── pkg-descr ├── libparallax ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libpcx ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libpng ├── Makefile ├── distinfo ├── files │ ├── KOSMakefile.mk │ ├── kos_img.c │ ├── kos_texture.c │ ├── kospng.h │ ├── readpng.c │ ├── readpng.h │ └── writepng.c └── pkg-descr ├── libsmb2 ├── Makefile └── pkg-descr ├── libtga ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libtremor ├── Makefile ├── files │ ├── KOSMakefile.mk │ ├── README │ ├── main.c │ ├── sndoggvorbis.c │ ├── sndoggvorbis.h │ └── sndvorbisfile.h └── pkg-descr ├── libtsunami ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libvldmail ├── Makefile └── pkg-descr ├── libvorbis ├── Makefile ├── distinfo ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libwav ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── libyaml ├── Makefile ├── distinfo └── pkg-descr ├── libzip ├── Makefile ├── distinfo ├── files │ └── libzip-1.0.1.patch └── pkg-descr ├── lua ├── Makefile ├── distinfo ├── files │ └── KOSMakefile.mk └── pkg-descr ├── micropython ├── Makefile ├── files │ ├── KOSMakefile.mk │ └── mpconfigport.h └── pkg-descr ├── mruby ├── Makefile ├── files │ └── KOSMakefile.mk └── pkg-descr ├── opus ├── Makefile ├── distinfo └── pkg-descr ├── opusfile ├── Makefile ├── distinfo └── pkg-descr ├── polarssl ├── Makefile ├── distinfo ├── files │ └── polarssl-1.3.9.patch └── pkg-descr ├── raylib4dc ├── Makefile └── pkg-descr ├── scripts ├── build.mk ├── clean.mk ├── depends.mk ├── download.mk ├── kos-ports.mk ├── lib.mk ├── portinfo.mk ├── precision.mk ├── setup.mk ├── uninstall.mk ├── unpack.mk ├── validate.mk ├── validate_dist.py ├── vercmp.sh └── version.mk ├── stb_image ├── Makefile ├── distinfo ├── files │ ├── KOSMakefile.mk │ └── stb_image.cpp └── pkg-descr ├── utils ├── build-all.sh ├── calc_dist.py ├── clean-all.sh └── uninstall-all.sh └── zlib ├── Makefile ├── distinfo ├── files ├── KOSMakefile.mk └── kos_zlib.c └── pkg-descr /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/README.md -------------------------------------------------------------------------------- /SDL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/Makefile -------------------------------------------------------------------------------- /SDL/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/distinfo -------------------------------------------------------------------------------- /SDL/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/KOSMakefile.mk -------------------------------------------------------------------------------- /SDL/files/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /SDL/files/SDL_dcaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcaudio.c -------------------------------------------------------------------------------- /SDL/files/SDL_dcaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcaudio.h -------------------------------------------------------------------------------- /SDL/files/SDL_dcevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcevents.c -------------------------------------------------------------------------------- /SDL/files/SDL_dcevents_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcevents_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_dcmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcmouse.c -------------------------------------------------------------------------------- /SDL/files/SDL_dcmouse_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcmouse_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_dcvideo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcvideo.c -------------------------------------------------------------------------------- /SDL/files/SDL_dcvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_dcvideo.h -------------------------------------------------------------------------------- /SDL/files/SDL_syscdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_syscdrom.c -------------------------------------------------------------------------------- /SDL/files/SDL_syscond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_syscond.c -------------------------------------------------------------------------------- /SDL/files/SDL_syscond_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_syscond_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_sysjoystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_sysjoystick.c -------------------------------------------------------------------------------- /SDL/files/SDL_sysmutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_sysmutex.c -------------------------------------------------------------------------------- /SDL/files/SDL_sysmutex_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_sysmutex_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_syssem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_syssem.c -------------------------------------------------------------------------------- /SDL/files/SDL_syssem_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_syssem_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_systhread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_systhread.c -------------------------------------------------------------------------------- /SDL/files/SDL_systhread_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_systhread_c.h -------------------------------------------------------------------------------- /SDL/files/SDL_systimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/SDL_systimer.c -------------------------------------------------------------------------------- /SDL/files/aica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/aica.c -------------------------------------------------------------------------------- /SDL/files/aica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/files/aica.h -------------------------------------------------------------------------------- /SDL/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL/pkg-descr -------------------------------------------------------------------------------- /SDL_ttf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL_ttf/Makefile -------------------------------------------------------------------------------- /SDL_ttf/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL_ttf/files/KOSMakefile.mk -------------------------------------------------------------------------------- /SDL_ttf/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/SDL_ttf/pkg-descr -------------------------------------------------------------------------------- /cglm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/cglm/Makefile -------------------------------------------------------------------------------- /cglm/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/cglm/pkg-descr -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/config.mk -------------------------------------------------------------------------------- /curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/curl/Makefile -------------------------------------------------------------------------------- /curl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/curl/distinfo -------------------------------------------------------------------------------- /curl/files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/curl/files/CMakeLists.txt -------------------------------------------------------------------------------- /curl/files/FindPolarSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/curl/files/FindPolarSSL.cmake -------------------------------------------------------------------------------- /curl/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/curl/pkg-descr -------------------------------------------------------------------------------- /expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/expat/Makefile -------------------------------------------------------------------------------- /expat/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/expat/distinfo -------------------------------------------------------------------------------- /expat/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/expat/pkg-descr -------------------------------------------------------------------------------- /freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/freetype/Makefile -------------------------------------------------------------------------------- /freetype/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/freetype/distinfo -------------------------------------------------------------------------------- /freetype/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/freetype/pkg-descr -------------------------------------------------------------------------------- /libADX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libADX/Makefile -------------------------------------------------------------------------------- /libADX/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libADX/pkg-descr -------------------------------------------------------------------------------- /libAL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libAL/Makefile -------------------------------------------------------------------------------- /libAL/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libAL/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libAL/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libAL/pkg-descr -------------------------------------------------------------------------------- /libGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libGL/Makefile -------------------------------------------------------------------------------- /libGL/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libGL/pkg-descr -------------------------------------------------------------------------------- /libKGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libKGL/Makefile -------------------------------------------------------------------------------- /libKGL/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libKGL/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libKGL/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libKGL/pkg-descr -------------------------------------------------------------------------------- /libbearssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbearssl/Makefile -------------------------------------------------------------------------------- /libbearssl/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbearssl/pkg-descr -------------------------------------------------------------------------------- /libbz2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbz2/Makefile -------------------------------------------------------------------------------- /libbz2/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbz2/distinfo -------------------------------------------------------------------------------- /libbz2/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbz2/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libbz2/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libbz2/pkg-descr -------------------------------------------------------------------------------- /libchipmunk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libchipmunk/Makefile -------------------------------------------------------------------------------- /libchipmunk/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libchipmunk/pkg-descr -------------------------------------------------------------------------------- /libcmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libcmark/Makefile -------------------------------------------------------------------------------- /libcmark/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libcmark/pkg-descr -------------------------------------------------------------------------------- /libconio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libconio/Makefile -------------------------------------------------------------------------------- /libconio/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libconio/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libconio/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libconio/pkg-descr -------------------------------------------------------------------------------- /libdcplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libdcplib/Makefile -------------------------------------------------------------------------------- /libdcplib/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libdcplib/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libdcplib/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libdcplib/pkg-descr -------------------------------------------------------------------------------- /libfastmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libfastmem/Makefile -------------------------------------------------------------------------------- /libfastmem/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libfastmem/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libfastmem/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libfastmem/pkg-descr -------------------------------------------------------------------------------- /libimageload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libimageload/Makefile -------------------------------------------------------------------------------- /libimageload/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libimageload/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libimageload/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libimageload/pkg-descr -------------------------------------------------------------------------------- /libjimtcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjimtcl/Makefile -------------------------------------------------------------------------------- /libjimtcl/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjimtcl/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libjimtcl/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjimtcl/pkg-descr -------------------------------------------------------------------------------- /libjpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/Makefile -------------------------------------------------------------------------------- /libjpeg/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/distinfo -------------------------------------------------------------------------------- /libjpeg/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libjpeg/files/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/files/jpeg.h -------------------------------------------------------------------------------- /libjpeg/files/kos_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/files/kos_img.c -------------------------------------------------------------------------------- /libjpeg/files/kos_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/files/kos_texture.c -------------------------------------------------------------------------------- /libjpeg/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libjpeg/pkg-descr -------------------------------------------------------------------------------- /libkmg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkmg/Makefile -------------------------------------------------------------------------------- /libkmg/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkmg/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libkmg/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkmg/pkg-descr -------------------------------------------------------------------------------- /libkosh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkosh/Makefile -------------------------------------------------------------------------------- /libkosh/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkosh/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libkosh/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libkosh/pkg-descr -------------------------------------------------------------------------------- /libmodplug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmodplug/Makefile -------------------------------------------------------------------------------- /libmodplug/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmodplug/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libmodplug/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmodplug/pkg-descr -------------------------------------------------------------------------------- /libmp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmp3/Makefile -------------------------------------------------------------------------------- /libmp3/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmp3/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libmp3/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmp3/pkg-descr -------------------------------------------------------------------------------- /libmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmpeg/Makefile -------------------------------------------------------------------------------- /libmpeg/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmpeg/distinfo -------------------------------------------------------------------------------- /libmpeg/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmpeg/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libmpeg/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libmpeg/pkg-descr -------------------------------------------------------------------------------- /libogg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libogg/Makefile -------------------------------------------------------------------------------- /libogg/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libogg/distinfo -------------------------------------------------------------------------------- /libogg/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libogg/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libogg/files/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libogg/files/config_types.h -------------------------------------------------------------------------------- /libogg/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libogg/pkg-descr -------------------------------------------------------------------------------- /liboggvorbisplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/liboggvorbisplay/Makefile -------------------------------------------------------------------------------- /liboggvorbisplay/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/liboggvorbisplay/files/KOSMakefile.mk -------------------------------------------------------------------------------- /liboggvorbisplay/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/liboggvorbisplay/pkg-descr -------------------------------------------------------------------------------- /libopusplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libopusplay/Makefile -------------------------------------------------------------------------------- /libopusplay/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libopusplay/pkg-descr -------------------------------------------------------------------------------- /libparallax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libparallax/Makefile -------------------------------------------------------------------------------- /libparallax/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libparallax/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libparallax/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libparallax/pkg-descr -------------------------------------------------------------------------------- /libpcx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpcx/Makefile -------------------------------------------------------------------------------- /libpcx/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpcx/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libpcx/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpcx/pkg-descr -------------------------------------------------------------------------------- /libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/Makefile -------------------------------------------------------------------------------- /libpng/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/distinfo -------------------------------------------------------------------------------- /libpng/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libpng/files/kos_img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/kos_img.c -------------------------------------------------------------------------------- /libpng/files/kos_texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/kos_texture.c -------------------------------------------------------------------------------- /libpng/files/kospng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/kospng.h -------------------------------------------------------------------------------- /libpng/files/readpng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/readpng.c -------------------------------------------------------------------------------- /libpng/files/readpng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/readpng.h -------------------------------------------------------------------------------- /libpng/files/writepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/files/writepng.c -------------------------------------------------------------------------------- /libpng/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libpng/pkg-descr -------------------------------------------------------------------------------- /libsmb2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libsmb2/Makefile -------------------------------------------------------------------------------- /libsmb2/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libsmb2/pkg-descr -------------------------------------------------------------------------------- /libtga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtga/Makefile -------------------------------------------------------------------------------- /libtga/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtga/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libtga/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtga/pkg-descr -------------------------------------------------------------------------------- /libtremor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/Makefile -------------------------------------------------------------------------------- /libtremor/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libtremor/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/README -------------------------------------------------------------------------------- /libtremor/files/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/main.c -------------------------------------------------------------------------------- /libtremor/files/sndoggvorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/sndoggvorbis.c -------------------------------------------------------------------------------- /libtremor/files/sndoggvorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/sndoggvorbis.h -------------------------------------------------------------------------------- /libtremor/files/sndvorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/files/sndvorbisfile.h -------------------------------------------------------------------------------- /libtremor/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtremor/pkg-descr -------------------------------------------------------------------------------- /libtsunami/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtsunami/Makefile -------------------------------------------------------------------------------- /libtsunami/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtsunami/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libtsunami/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libtsunami/pkg-descr -------------------------------------------------------------------------------- /libvldmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvldmail/Makefile -------------------------------------------------------------------------------- /libvldmail/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvldmail/pkg-descr -------------------------------------------------------------------------------- /libvorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvorbis/Makefile -------------------------------------------------------------------------------- /libvorbis/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvorbis/distinfo -------------------------------------------------------------------------------- /libvorbis/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvorbis/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libvorbis/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libvorbis/pkg-descr -------------------------------------------------------------------------------- /libwav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libwav/Makefile -------------------------------------------------------------------------------- /libwav/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libwav/files/KOSMakefile.mk -------------------------------------------------------------------------------- /libwav/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libwav/pkg-descr -------------------------------------------------------------------------------- /libyaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libyaml/Makefile -------------------------------------------------------------------------------- /libyaml/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libyaml/distinfo -------------------------------------------------------------------------------- /libyaml/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libyaml/pkg-descr -------------------------------------------------------------------------------- /libzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libzip/Makefile -------------------------------------------------------------------------------- /libzip/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libzip/distinfo -------------------------------------------------------------------------------- /libzip/files/libzip-1.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libzip/files/libzip-1.0.1.patch -------------------------------------------------------------------------------- /libzip/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/libzip/pkg-descr -------------------------------------------------------------------------------- /lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/lua/Makefile -------------------------------------------------------------------------------- /lua/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/lua/distinfo -------------------------------------------------------------------------------- /lua/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/lua/files/KOSMakefile.mk -------------------------------------------------------------------------------- /lua/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/lua/pkg-descr -------------------------------------------------------------------------------- /micropython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/micropython/Makefile -------------------------------------------------------------------------------- /micropython/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/micropython/files/KOSMakefile.mk -------------------------------------------------------------------------------- /micropython/files/mpconfigport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/micropython/files/mpconfigport.h -------------------------------------------------------------------------------- /micropython/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/micropython/pkg-descr -------------------------------------------------------------------------------- /mruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/mruby/Makefile -------------------------------------------------------------------------------- /mruby/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/mruby/files/KOSMakefile.mk -------------------------------------------------------------------------------- /mruby/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/mruby/pkg-descr -------------------------------------------------------------------------------- /opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opus/Makefile -------------------------------------------------------------------------------- /opus/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opus/distinfo -------------------------------------------------------------------------------- /opus/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opus/pkg-descr -------------------------------------------------------------------------------- /opusfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opusfile/Makefile -------------------------------------------------------------------------------- /opusfile/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opusfile/distinfo -------------------------------------------------------------------------------- /opusfile/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/opusfile/pkg-descr -------------------------------------------------------------------------------- /polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/polarssl/Makefile -------------------------------------------------------------------------------- /polarssl/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/polarssl/distinfo -------------------------------------------------------------------------------- /polarssl/files/polarssl-1.3.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/polarssl/files/polarssl-1.3.9.patch -------------------------------------------------------------------------------- /polarssl/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/polarssl/pkg-descr -------------------------------------------------------------------------------- /raylib4dc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/raylib4dc/Makefile -------------------------------------------------------------------------------- /raylib4dc/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/raylib4dc/pkg-descr -------------------------------------------------------------------------------- /scripts/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/build.mk -------------------------------------------------------------------------------- /scripts/clean.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/clean.mk -------------------------------------------------------------------------------- /scripts/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/depends.mk -------------------------------------------------------------------------------- /scripts/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/download.mk -------------------------------------------------------------------------------- /scripts/kos-ports.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/kos-ports.mk -------------------------------------------------------------------------------- /scripts/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/lib.mk -------------------------------------------------------------------------------- /scripts/portinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/portinfo.mk -------------------------------------------------------------------------------- /scripts/precision.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/precision.mk -------------------------------------------------------------------------------- /scripts/setup.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/setup.mk -------------------------------------------------------------------------------- /scripts/uninstall.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/uninstall.mk -------------------------------------------------------------------------------- /scripts/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/unpack.mk -------------------------------------------------------------------------------- /scripts/validate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/validate.mk -------------------------------------------------------------------------------- /scripts/validate_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/validate_dist.py -------------------------------------------------------------------------------- /scripts/vercmp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/vercmp.sh -------------------------------------------------------------------------------- /scripts/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/scripts/version.mk -------------------------------------------------------------------------------- /stb_image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/stb_image/Makefile -------------------------------------------------------------------------------- /stb_image/distinfo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stb_image/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/stb_image/files/KOSMakefile.mk -------------------------------------------------------------------------------- /stb_image/files/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/stb_image/files/stb_image.cpp -------------------------------------------------------------------------------- /stb_image/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/stb_image/pkg-descr -------------------------------------------------------------------------------- /utils/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/utils/build-all.sh -------------------------------------------------------------------------------- /utils/calc_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/utils/calc_dist.py -------------------------------------------------------------------------------- /utils/clean-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/utils/clean-all.sh -------------------------------------------------------------------------------- /utils/uninstall-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/utils/uninstall-all.sh -------------------------------------------------------------------------------- /zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/zlib/Makefile -------------------------------------------------------------------------------- /zlib/distinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/zlib/distinfo -------------------------------------------------------------------------------- /zlib/files/KOSMakefile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/zlib/files/KOSMakefile.mk -------------------------------------------------------------------------------- /zlib/files/kos_zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/zlib/files/kos_zlib.c -------------------------------------------------------------------------------- /zlib/pkg-descr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KallistiOS/kos-ports/HEAD/zlib/pkg-descr --------------------------------------------------------------------------------