diff --git a/default.gcw0.desktop b/default.gcw0.desktop deleted file mode 100644 index 8d0c767..0000000 --- a/default.gcw0.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Version=1.0 -Type=Application -Name=Coffee Crisis -Comment=Coffee Crisis -Icon=icon -Exec=bin/coffee_crisis -Categories=games;Game;SDL; -Terminal=false diff --git a/generate_opendingux b/generate_opendingux deleted file mode 100755 index 2d2a2d9..0000000 --- a/generate_opendingux +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/bash - -mkdir -p bin -cd source -/opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ -g -D_GCWZERO -O2 -I/opt/gcw0-toolchain/usr/mipsel-gcw0-linux-uclibc/sysroot/usr/include/SDL2 -D_GNU_SOURCE=1 -D_REENTRANT -lSDL2 -lSDL2_mixer -std=c++11 *.cpp -o ../bin/coffee_crisis -cd .. -/opt/gcw0-toolchain/usr/bin/mksquashfs ./default.gcw0.desktop ./icon.png ./bin ./data ./media coffee_crisis.opk -all-root -noappend -no-exports -no-xattrs diff --git a/icon.png b/icon.png deleted file mode 100644 index 0aae97a..0000000 Binary files a/icon.png and /dev/null differ diff --git a/media/.DS_Store b/media/.DS_Store deleted file mode 100644 index 8b4ea83..0000000 Binary files a/media/.DS_Store and /dev/null differ diff --git a/media/gfx/.DS_Store b/media/gfx/.DS_Store deleted file mode 100644 index 69694f0..0000000 Binary files a/media/gfx/.DS_Store and /dev/null differ diff --git a/media/music/.DS_Store b/media/music/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/media/music/.DS_Store and /dev/null differ diff --git a/source/.DS_Store b/source/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/source/.DS_Store and /dev/null differ diff --git a/sync.sh b/sync.sh deleted file mode 100755 index 0376753..0000000 --- a/sync.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -readonly PROJECT=coffee_crisis - -readonly USAGE=" -USAGE: -$(basename "$0") [UPLOAD or DOWNLOAD]" - -function help_message() { - echo "$USAGE" -} - -PARAMETERS="UPLOAD DOWNLOAD upload download" - -# check if there are all the parameters -if [ "$#" -ne 1 ]; then - help_message - exit 0 -fi - -# check if the systems parameter is valid -if ! echo "$PARAMETERS" | grep -w "$1" >/dev/null; then - help_message - exit 0 -fi - -# UPLOAD -if [ "$1" = upload ] || [ "$1" = UPLOAD ]; then - printf "\n%s\n" "uploading $PROJECT" - rsync -avzmPu --delete -e 'ssh -p 4545' . sergio@sustancia.synology.me:/home/sergio/backup/code/$PROJECT/ - rsync -avzmPu -e 'ssh -p 4545' . sergio@sustancia.synology.me:/home/sergio/backup/code/$PROJECT.all/ -fi - -if [ "$1" = download ] || [ "$1" = DOWNLOAD ]; then - printf "%s\n" "downloading $PROJECT" - rsync -avzmP --delete -e 'ssh -p 4545' sergio@sustancia.synology.me:/home/sergio/backup/code/$PROJECT/* . -fi \ No newline at end of file