new release

This commit is contained in:
Page Asgardius 2024-11-10 09:11:41 -07:00
parent 0a45112b59
commit 92a886cf72
9 changed files with 98 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
amd64/opt/virtualx/r3-game.x86_64
amd64/opt/virtualx/r3-game.pck
arm64/opt/virtualx/r3-game.pck
arm64/opt/virtualx/r3-game.arm64

30
amd64/DEBIAN/control Normal file
View file

@ -0,0 +1,30 @@
Package: r3-game
Version: 0.2.1-1
Section: games
Priority: optional
Architecture: amd64
Maintainer: Page Asgardius <asgardius@asgardius.company>
Description: Puzzle game set in the asteroid belt (made with godot)
Depends: libasound2,
libc6,
libenet7,
libfreetype6,
libgcc-s1,
libgl1,
libogg0,
libpcre2-32-0,
libpng16-16,
libpulse0,
libsquish0,
libstdc++6,
libtheora0,
libvorbis0a,
libvpx7,
libwebp7,
libx11-6,
libxcursor1,
libxi6,
libxinerama1,
libxrandr2,
libxrender1,
zlib1g

7
amd64/usr/bin/r3-game Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
cd /opt/virtualx/
if uname -m | grep -q 'x86_64'; then
./r3-game.x86_64 $@
else
./r3-game.arm64 $@
fi

View file

@ -0,0 +1,10 @@
[Desktop Entry]
Name=The Red Robot Radio
Comment=Puzzle game set in the asteroid belt
Exec=r3-game
Icon=/usr/share/icons/hicolor/apps/r3-game.png
Terminal=false
Type=Application
Categories=Game;
Keywords=Game;

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

30
arm64/DEBIAN/control Normal file
View file

@ -0,0 +1,30 @@
Package: r3-game
Version: 0.2.1-1
Section: games
Priority: optional
Architecture: arm64
Maintainer: Page Asgardius <asgardius@asgardius.company>
Description: Puzzle game set in the asteroid belt (made with godot)
Depends: libasound2,
libc6,
libenet7,
libfreetype6,
libgcc-s1,
libgl1,
libogg0,
libpcre2-32-0,
libpng16-16,
libpulse0,
libsquish0,
libstdc++6,
libtheora0,
libvorbis0a,
libvpx7,
libwebp7,
libx11-6,
libxcursor1,
libxi6,
libxinerama1,
libxrandr2,
libxrender1,
zlib1g

7
arm64/usr/bin/r3-game Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
cd /opt/virtualx/
if uname -m | grep -q 'x86_64'; then
./r3-game.x86_64 $@
else
./r3-game.arm64 $@
fi

View file

@ -0,0 +1,10 @@
[Desktop Entry]
Name=The Red Robot Radio
Comment=Puzzle game set in the asteroid belt
Exec=r3-game
Icon=/usr/share/icons/hicolor/apps/r3-game.png
Terminal=false
Type=Application
Categories=Game;
Keywords=Game;

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB