-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from carstene1ns/feature/wiiu
WiiU support
- Loading branch information
Showing
22 changed files
with
280 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
./1_download_library.sh \ | ||
&& ./2_build_toolchain.sh \ | ||
&& ./3_cleanup.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#!/bin/bash | ||
|
||
# abort on errors | ||
set -e | ||
|
||
export WORKSPACE=$PWD | ||
|
||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
source $SCRIPT_DIR/../shared/import.sh | ||
|
||
msg " [1] Checking devkitPPC" | ||
|
||
if [[ -z $DEVKITPRO || -z $DEVKITPPC ]]; then | ||
echo "Setup devkitPPC properly. \$DEVKITPRO and \$DEVKITPPC need to be set." | ||
exit 1 | ||
fi | ||
|
||
msg " [2] Downloading generic libraries" | ||
|
||
# zlib | ||
rm -rf $ZLIB_DIR | ||
download_and_extract $ZLIB_URL | ||
|
||
# libpng | ||
rm -rf $LIBPNG_DIR | ||
download_and_extract $LIBPNG_URL | ||
|
||
# freetype | ||
rm -rf $FREETYPE_DIR | ||
download_and_extract $FREETYPE_URL | ||
|
||
# harfbuzz | ||
#rm -rf $HARFBUZZ_DIR | ||
#download_and_extract $HARFBUZZ_URL | ||
|
||
# pixman | ||
rm -rf $PIXMAN_DIR | ||
download_and_extract $PIXMAN_URL | ||
|
||
# expat | ||
rm -rf $EXPAT_DIR | ||
download_and_extract $EXPAT_URL | ||
|
||
# libogg | ||
rm -rf $LIBOGG_DIR | ||
download_and_extract $LIBOGG_URL | ||
|
||
# tremor | ||
rm -rf $LIBVORBIS_DIR | ||
download_and_extract $LIBVORBIS_URL | ||
|
||
# mpg123 | ||
rm -rf $MPG123_DIR | ||
download_and_extract $MPG123_URL | ||
|
||
# libxmp-lite | ||
rm -rf $LIBXMP_LITE_DIR | ||
download_and_extract $LIBXMP_LITE_URL | ||
|
||
# speexdsp | ||
rm -rf $SPEEXDSP_DIR | ||
download_and_extract $SPEEXDSP_URL | ||
|
||
# opus | ||
rm -rf $OPUS_DIR | ||
download_and_extract $OPUS_URL | ||
|
||
# opusfile | ||
rm -rf $OPUSFILE_DIR | ||
download_and_extract $OPUSFILE_URL | ||
|
||
# FluidLite | ||
rm -rf $FLUIDLITE_DIR | ||
download_and_extract $FLUIDLITE_URL | ||
|
||
# inih | ||
rm -rf $INIH_DIR | ||
download_and_extract $INIH_URL | ||
|
||
# lhasa | ||
rm -rf $LHASA_DIR | ||
download_and_extract $LHASA_URL | ||
|
||
# fmt | ||
rm -rf $FMT_DIR | ||
download_and_extract $FMT_URL | ||
|
||
# ICU | ||
rm -rf $ICU_DIR | ||
download_and_extract $ICU_URL | ||
|
||
# icudata | ||
rm -f $ICUDATA_FILES | ||
download_and_extract $ICUDATA_URL | ||
|
||
msg " [3] Downloading platform libraries" | ||
|
||
# liblcf | ||
rm -rf liblcf | ||
download_liblcf |
Oops, something went wrong.