-
Notifications
You must be signed in to change notification settings - Fork 4
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 #73 from mardy/wii-port
Add Wii port
- Loading branch information
Showing
13 changed files
with
131 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/bin/bash | ||
./add-new-platform.sh psp 480x272 ogg | ||
./add-new-platform.sh vita 960x544 | ||
./add-new-platform.sh wii 640x480 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,42 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
usage() { | ||
echo "Usage: ${0} builddir version" | ||
echo "" | ||
echo "builddir: path to the build directory" | ||
echo "version: package version" | ||
exit 1 | ||
} | ||
|
||
if [ -z "${1}" ]||[ -z "${2}" ]; then | ||
echo "Please fill in all required fields" | ||
usage | ||
fi | ||
|
||
BUILDDIR="$1" | ||
VERSION="$2" | ||
|
||
PLATFORMDIR="$(dirname "$0")" | ||
RELEASEDIR="$BUILDDIR/oceanpop" | ||
|
||
rm -rf "$RELEASEDIR" | ||
mkdir -p "$RELEASEDIR" | ||
|
||
cp "$BUILDDIR/oceanpop.dol" "$RELEASEDIR/boot.dol" | ||
cp "$PLATFORMDIR/icon.png" "$RELEASEDIR" | ||
sed "s/VERSION/$VERSION/" "$PLATFORMDIR/meta.xml" > "$RELEASEDIR/meta.xml" | ||
cp -a "$BUILDDIR/assets" "$RELEASEDIR" | ||
|
||
cd "$BUILDDIR" | ||
rm -f "oceanpop_$VERSION.zip" | ||
zip -r "oceanpop_$VERSION.zip" "oceanpop" | ||
|
||
echo "The release is ready at" | ||
echo | ||
echo " $BUILDDIR/oceanpop_$VERSION.zip" | ||
echo | ||
echo "You can now upload this file to the releases page:" | ||
echo " https://github.com/sharkwouter/oceanpop/releases" | ||
|
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,10 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<app version="1"> | ||
<name>OceanPop</name> | ||
<coder>Wouter Wijsman</coder> | ||
<version>VERSION</version> | ||
<release_date>20240322152132</release_date> | ||
<short_description>A relaxing match 3 puzzle game</short_description> | ||
<long_description>Dive into the relaxing world of OceanPop and experience waves of match-3 gameplay with the three modes available! | ||
</long_description> | ||
</app> |
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