├── .gitignore ├── common.sh ├── depends ├── check-SDL.sh ├── check-SDL2.sh ├── check-SDL2_gfx.sh ├── check-SDL2_image.sh ├── check-SDL2_mixer.sh ├── check-SDL2_ttf.sh ├── check-SDL_gfx.sh ├── check-SDL_image.sh ├── check-SDL_mixer.sh ├── check-SDL_ttf.sh ├── check-angelscript.sh ├── check-autoconf.sh ├── check-automake.sh ├── check-bzip2.sh ├── check-cmake-toolchain-script.sh ├── check-cmake.sh ├── check-doxygen.sh ├── check-expat.sh ├── check-freetype.sh ├── check-git.sh ├── check-jpeg.sh ├── check-kubridge.sh ├── check-libbulletml.sh ├── check-libmad.sh ├── check-libmikmod.sh ├── check-libogg.sh ├── check-libpng.sh ├── check-libpspvram.sh ├── check-libtool.sh ├── check-libtremor.sh ├── check-libvorbis.sh ├── check-libyaml.sh ├── check-lua.sh ├── check-make.sh ├── check-openal.sh ├── check-opentri.sh ├── check-pixman.sh ├── check-pspgl.sh ├── check-pspirkeyb.sh ├── check-psptoolchain.sh ├── check-pthreads-emb.sh ├── check-smpeg-psp.sh ├── check-sqlite.sh ├── check-squirrel.sh ├── check-subversion.sh ├── check-tar.sh ├── check-unzip.sh ├── check-wget.sh ├── check-zlib.sh └── check-zziplib.sh ├── libraries-sudo.sh ├── libraries.sh ├── patches ├── CreatePBP.cmake ├── PSP.cmake ├── SDL-1.2.15-PSP.patch ├── SDL_glfuncs.h.patch ├── bzip2-1.0.6-PSP.patch ├── config.sub ├── libmikmod-3.3.11.1-PSP.patch ├── libpng-1.5.7-PSP.patch ├── openal-1.14-PSP.patch ├── psp-cmake ├── ruby-1.9.2-p180.patch ├── smpeg-psp.patch ├── sqlite-3.7.3-PSP-mingw64.patch ├── sqlite-3.7.3-PSP.patch ├── squirrel-3.0.7.patch └── zlib-1.2.11-PSP.patch ├── readme-ubuntu.txt ├── readme.txt └── scripts ├── SDL.sh ├── SDL2.sh ├── SDL2_gfx.sh ├── SDL2_image.sh ├── SDL2_mixer.sh ├── SDL2_ttf.sh ├── SDL_gfx.sh ├── SDL_image.sh ├── SDL_mixer.sh ├── SDL_ttf.sh ├── angelscript.sh ├── bzip2.sh ├── cmake-toolchain-script.sh ├── expat.sh ├── freetype.sh ├── jpeg.sh ├── kubridge.sh ├── libbulletml.sh ├── libmad.sh ├── libmikmod.sh ├── libogg.sh ├── libpng.sh ├── libpspvram.sh ├── libtremor.sh ├── libvorbis.sh ├── libyaml.sh ├── lua.sh ├── openal.sh ├── opentri.sh ├── pixman.sh ├── pspgl.sh ├── pspirkeyb.sh ├── pthreads-emb.sh ├── smpeg-psp.sh ├── sqlite.sh ├── squirrel.sh ├── zlib.sh └── zziplib.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/common.sh -------------------------------------------------------------------------------- /depends/check-SDL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL.sh -------------------------------------------------------------------------------- /depends/check-SDL2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL2.sh -------------------------------------------------------------------------------- /depends/check-SDL2_gfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL2_gfx.sh -------------------------------------------------------------------------------- /depends/check-SDL2_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL2_image.sh -------------------------------------------------------------------------------- /depends/check-SDL2_mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL2_mixer.sh -------------------------------------------------------------------------------- /depends/check-SDL2_ttf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL2_ttf.sh -------------------------------------------------------------------------------- /depends/check-SDL_gfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL_gfx.sh -------------------------------------------------------------------------------- /depends/check-SDL_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL_image.sh -------------------------------------------------------------------------------- /depends/check-SDL_mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL_mixer.sh -------------------------------------------------------------------------------- /depends/check-SDL_ttf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-SDL_ttf.sh -------------------------------------------------------------------------------- /depends/check-angelscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-angelscript.sh -------------------------------------------------------------------------------- /depends/check-autoconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-autoconf.sh -------------------------------------------------------------------------------- /depends/check-automake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-automake.sh -------------------------------------------------------------------------------- /depends/check-bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-bzip2.sh -------------------------------------------------------------------------------- /depends/check-cmake-toolchain-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-cmake-toolchain-script.sh -------------------------------------------------------------------------------- /depends/check-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-cmake.sh -------------------------------------------------------------------------------- /depends/check-doxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-doxygen.sh -------------------------------------------------------------------------------- /depends/check-expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-expat.sh -------------------------------------------------------------------------------- /depends/check-freetype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-freetype.sh -------------------------------------------------------------------------------- /depends/check-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-git.sh -------------------------------------------------------------------------------- /depends/check-jpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-jpeg.sh -------------------------------------------------------------------------------- /depends/check-kubridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-kubridge.sh -------------------------------------------------------------------------------- /depends/check-libbulletml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libbulletml.sh -------------------------------------------------------------------------------- /depends/check-libmad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libmad.sh -------------------------------------------------------------------------------- /depends/check-libmikmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libmikmod.sh -------------------------------------------------------------------------------- /depends/check-libogg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libogg.sh -------------------------------------------------------------------------------- /depends/check-libpng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libpng.sh -------------------------------------------------------------------------------- /depends/check-libpspvram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libpspvram.sh -------------------------------------------------------------------------------- /depends/check-libtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libtool.sh -------------------------------------------------------------------------------- /depends/check-libtremor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libtremor.sh -------------------------------------------------------------------------------- /depends/check-libvorbis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libvorbis.sh -------------------------------------------------------------------------------- /depends/check-libyaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-libyaml.sh -------------------------------------------------------------------------------- /depends/check-lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-lua.sh -------------------------------------------------------------------------------- /depends/check-make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-make.sh -------------------------------------------------------------------------------- /depends/check-openal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-openal.sh -------------------------------------------------------------------------------- /depends/check-opentri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-opentri.sh -------------------------------------------------------------------------------- /depends/check-pixman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-pixman.sh -------------------------------------------------------------------------------- /depends/check-pspgl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-pspgl.sh -------------------------------------------------------------------------------- /depends/check-pspirkeyb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-pspirkeyb.sh -------------------------------------------------------------------------------- /depends/check-psptoolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-psptoolchain.sh -------------------------------------------------------------------------------- /depends/check-pthreads-emb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-pthreads-emb.sh -------------------------------------------------------------------------------- /depends/check-smpeg-psp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-smpeg-psp.sh -------------------------------------------------------------------------------- /depends/check-sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-sqlite.sh -------------------------------------------------------------------------------- /depends/check-squirrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-squirrel.sh -------------------------------------------------------------------------------- /depends/check-subversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-subversion.sh -------------------------------------------------------------------------------- /depends/check-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-tar.sh -------------------------------------------------------------------------------- /depends/check-unzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-unzip.sh -------------------------------------------------------------------------------- /depends/check-wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-wget.sh -------------------------------------------------------------------------------- /depends/check-zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-zlib.sh -------------------------------------------------------------------------------- /depends/check-zziplib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/depends/check-zziplib.sh -------------------------------------------------------------------------------- /libraries-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/libraries-sudo.sh -------------------------------------------------------------------------------- /libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/libraries.sh -------------------------------------------------------------------------------- /patches/CreatePBP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/CreatePBP.cmake -------------------------------------------------------------------------------- /patches/PSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/PSP.cmake -------------------------------------------------------------------------------- /patches/SDL-1.2.15-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/SDL-1.2.15-PSP.patch -------------------------------------------------------------------------------- /patches/SDL_glfuncs.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/SDL_glfuncs.h.patch -------------------------------------------------------------------------------- /patches/bzip2-1.0.6-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/bzip2-1.0.6-PSP.patch -------------------------------------------------------------------------------- /patches/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/config.sub -------------------------------------------------------------------------------- /patches/libmikmod-3.3.11.1-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/libmikmod-3.3.11.1-PSP.patch -------------------------------------------------------------------------------- /patches/libpng-1.5.7-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/libpng-1.5.7-PSP.patch -------------------------------------------------------------------------------- /patches/openal-1.14-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/openal-1.14-PSP.patch -------------------------------------------------------------------------------- /patches/psp-cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/psp-cmake -------------------------------------------------------------------------------- /patches/ruby-1.9.2-p180.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/ruby-1.9.2-p180.patch -------------------------------------------------------------------------------- /patches/smpeg-psp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/smpeg-psp.patch -------------------------------------------------------------------------------- /patches/sqlite-3.7.3-PSP-mingw64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/sqlite-3.7.3-PSP-mingw64.patch -------------------------------------------------------------------------------- /patches/sqlite-3.7.3-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/sqlite-3.7.3-PSP.patch -------------------------------------------------------------------------------- /patches/squirrel-3.0.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/squirrel-3.0.7.patch -------------------------------------------------------------------------------- /patches/zlib-1.2.11-PSP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/patches/zlib-1.2.11-PSP.patch -------------------------------------------------------------------------------- /readme-ubuntu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/readme-ubuntu.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/readme.txt -------------------------------------------------------------------------------- /scripts/SDL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL.sh -------------------------------------------------------------------------------- /scripts/SDL2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL2.sh -------------------------------------------------------------------------------- /scripts/SDL2_gfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL2_gfx.sh -------------------------------------------------------------------------------- /scripts/SDL2_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL2_image.sh -------------------------------------------------------------------------------- /scripts/SDL2_mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL2_mixer.sh -------------------------------------------------------------------------------- /scripts/SDL2_ttf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL2_ttf.sh -------------------------------------------------------------------------------- /scripts/SDL_gfx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL_gfx.sh -------------------------------------------------------------------------------- /scripts/SDL_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL_image.sh -------------------------------------------------------------------------------- /scripts/SDL_mixer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL_mixer.sh -------------------------------------------------------------------------------- /scripts/SDL_ttf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/SDL_ttf.sh -------------------------------------------------------------------------------- /scripts/angelscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/angelscript.sh -------------------------------------------------------------------------------- /scripts/bzip2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/bzip2.sh -------------------------------------------------------------------------------- /scripts/cmake-toolchain-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/cmake-toolchain-script.sh -------------------------------------------------------------------------------- /scripts/expat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/expat.sh -------------------------------------------------------------------------------- /scripts/freetype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/freetype.sh -------------------------------------------------------------------------------- /scripts/jpeg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | get_pspports jpeg 3 | run_make -j `num_cpus` 4 | -------------------------------------------------------------------------------- /scripts/kubridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/kubridge.sh -------------------------------------------------------------------------------- /scripts/libbulletml.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | get_pspports libbulletml/src 3 | run_make -j `num_cpus` 4 | -------------------------------------------------------------------------------- /scripts/libmad.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | get_pspports libmad 3 | run_make -j `num_cpus` 4 | -------------------------------------------------------------------------------- /scripts/libmikmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libmikmod.sh -------------------------------------------------------------------------------- /scripts/libogg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libogg.sh -------------------------------------------------------------------------------- /scripts/libpng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libpng.sh -------------------------------------------------------------------------------- /scripts/libpspvram.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libpspvram.sh -------------------------------------------------------------------------------- /scripts/libtremor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libtremor.sh -------------------------------------------------------------------------------- /scripts/libvorbis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libvorbis.sh -------------------------------------------------------------------------------- /scripts/libyaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/libyaml.sh -------------------------------------------------------------------------------- /scripts/lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/lua.sh -------------------------------------------------------------------------------- /scripts/openal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/openal.sh -------------------------------------------------------------------------------- /scripts/opentri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/opentri.sh -------------------------------------------------------------------------------- /scripts/pixman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/pixman.sh -------------------------------------------------------------------------------- /scripts/pspgl.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | get_pspport pspgl 3 | 4 | run_make -j `num_cpus` 5 | -------------------------------------------------------------------------------- /scripts/pspirkeyb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | get_pspports pspirkeyb 3 | run_make -j `num_cpus` 4 | -------------------------------------------------------------------------------- /scripts/pthreads-emb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/pthreads-emb.sh -------------------------------------------------------------------------------- /scripts/smpeg-psp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/smpeg-psp.sh -------------------------------------------------------------------------------- /scripts/sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/sqlite.sh -------------------------------------------------------------------------------- /scripts/squirrel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/squirrel.sh -------------------------------------------------------------------------------- /scripts/zlib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/zlib.sh -------------------------------------------------------------------------------- /scripts/zziplib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pspdev/psplibraries/HEAD/scripts/zziplib.sh --------------------------------------------------------------------------------