diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 9124b5e..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.exe -*.love -build/ \ No newline at end of file diff --git a/build/.gitignore b/build/.gitignore new file mode 100644 index 0000000..b9dda8d --- /dev/null +++ b/build/.gitignore @@ -0,0 +1,4 @@ +out/ +linux/ +macos/ +win/ \ No newline at end of file diff --git a/build/AKULIVIK.desktop b/build/AKULIVIK.desktop new file mode 100644 index 0000000..2c3243a --- /dev/null +++ b/build/AKULIVIK.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=AKULIVIK +Comment=Circumpolar Puzzle Game +MimeType=application/x-love-game; +Exec=AKULIVIK %f +Type=Application +Categories=Game; +Terminal=false +Icon=AKULIVIK +NoDisplay=true diff --git a/build/AppRun b/build/AppRun new file mode 100755 index 0000000..3455ac0 --- /dev/null +++ b/build/AppRun @@ -0,0 +1,29 @@ +#!/bin/sh + +if [ -z "$APPDIR" ]; then + APPDIR="$(dirname "$(readlink -f "$0")")" +fi + +export LD_LIBRARY_PATH="$APPDIR/lib/:$LD_LIBRARY_PATH" + +if [ -z "$XDG_DATA_DIRS" ]; then #unset or empty + XDG_DATA_DIRS="/usr/local/share/:/usr/share/" +fi +export XDG_DATA_DIRS="$APPDIR/share/:$XDG_DATA_DIRS" + +if [ -z "$LUA_PATH" ]; then + LUA_PATH=";" # so ends with ;; +fi +# if user's LUA_PATH does not end with ;; then user doesn't want the default path ? +export LUA_PATH="$APPDIR/share/luajit-2.1.0-beta3/?.lua;$APPDIR/share/lua/5.1/?.lua;$LUA_PATH" + +if [ -z "$LUA_CPATH" ]; then + LUA_CPATH=";" +fi +export LUA_CPATH="$APPDIR/lib/lua/5.1/?.so;$LUA_CPATH" + +# uncomment and edit to add your own game +#FUSE_PATH="$APPDIR/my_game.love" +#FUSE_PATH="$APPDIR/my_game" + +exec "$APPDIR/bin/AKULIVIK" "$@" \ No newline at end of file diff --git a/build/favicon.png b/build/favicon.png new file mode 100644 index 0000000..3317108 Binary files /dev/null and b/build/favicon.png differ diff --git a/build/licence.txt b/build/licence.txt new file mode 100644 index 0000000..7b03af4 --- /dev/null +++ b/build/licence.txt @@ -0,0 +1,3 @@ +Assets: +Johann Wilhelm Weis-Cuiller, photo par Ji-Elle sur Wikipedia: https://commons.wikimedia.org/wiki/File:Johann_Wilhelm_Weis-Cuiller.jpg licenced under CC-BY-SA 4.0: https://creativecommons.org/licenses/by-sa/4.0/ +Coffee spoon MET 17847.jpg, CC0 https://commons.wikimedia.org/wiki/File:Coffee_spoon_MET_17847.jpg \ No newline at end of file