debian release
This commit is contained in:
parent
5dd13dd52a
commit
71bf851d7b
9 changed files with 100 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
amd64/opt/virtualx/virtualxrpg.x86_64
|
||||
amd64/opt/virtualx/virtualxrpg.pck
|
||||
arm64/opt/virtualx/virtualxrpg.pck
|
||||
arm64/opt/virtualx/virtualxrpg.arm64
|
30
amd64/DEBIAN/control
Normal file
30
amd64/DEBIAN/control
Normal file
|
@ -0,0 +1,30 @@
|
|||
Package: midori-school
|
||||
Version: 0.2.0-1
|
||||
Section: games
|
||||
Priority: optional
|
||||
Architecture: amd64
|
||||
Maintainer: Page Asgardius <asgardius@asgardius.company>
|
||||
Description: The only Open Source Genshin Killer (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/virtualxrpg
Executable file
7
amd64/usr/bin/virtualxrpg
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
cd /opt/virtualx/
|
||||
if uname -m | grep -q 'x86_64'; then
|
||||
./virtualxrpg.x86_64
|
||||
else
|
||||
./virtualxrpg.arm64
|
||||
fi
|
11
amd64/usr/share/applications/virtualxrpg.desktop
Normal file
11
amd64/usr/share/applications/virtualxrpg.desktop
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Name=Midori in the Magic School
|
||||
Name[ja]=改造魔法学校のミドリ
|
||||
Comment=The only Open Source Genshin Killer
|
||||
Exec=virtualxrpg
|
||||
Icon=/usr/share/icons/hicolor/apps/virtualxrpg.png
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;
|
||||
Keywords=Game;
|
||||
|
BIN
amd64/usr/share/icons/hicolor/apps/virtualxrpg.png
Normal file
BIN
amd64/usr/share/icons/hicolor/apps/virtualxrpg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 281 KiB |
30
arm64/DEBIAN/control
Normal file
30
arm64/DEBIAN/control
Normal file
|
@ -0,0 +1,30 @@
|
|||
Package: midori-school
|
||||
Version: 0.2.0-1
|
||||
Section: games
|
||||
Priority: optional
|
||||
Architecture: arm64
|
||||
Maintainer: Page Asgardius <asgardius@asgardius.company>
|
||||
Description: The only Open Source Genshin Killer (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/virtualxrpg
Executable file
7
arm64/usr/bin/virtualxrpg
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
cd /opt/virtualx/
|
||||
if uname -m | grep -q 'x86_64'; then
|
||||
./virtualxrpg.x86_64
|
||||
else
|
||||
./virtualxrpg.arm64
|
||||
fi
|
11
arm64/usr/share/applications/virtualxrpg.desktop
Normal file
11
arm64/usr/share/applications/virtualxrpg.desktop
Normal file
|
@ -0,0 +1,11 @@
|
|||
[Desktop Entry]
|
||||
Name=Midori in the Magic School
|
||||
Name[ja]=改造魔法学校のミドリ
|
||||
Comment=The only Open Source Genshin Killer
|
||||
Exec=virtualxrpg
|
||||
Icon=/usr/share/icons/hicolor/apps/virtualxrpg.png
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;
|
||||
Keywords=Game;
|
||||
|
BIN
arm64/usr/share/icons/hicolor/apps/virtualxrpg.png
Normal file
BIN
arm64/usr/share/icons/hicolor/apps/virtualxrpg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 281 KiB |
Loading…
Reference in a new issue