template
This commit is contained in:
parent
8da437f4a3
commit
cb080e77d8
5 changed files with 36 additions and 1 deletions
15
AppRun
Executable file
15
AppRun
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
HERE="$(dirname "$(readlink -f "${0}")")"
|
||||
export UNION_PRELOAD="${HERE}"
|
||||
export LD_PRELOAD="${HERE}/libunionpreload.so"
|
||||
export PATH="${HERE}"/usr/bin/:"${HERE}"/usr/sbin/:"${HERE}"/usr/games/:"${HERE}"/bin/:"${HERE}"/sbin/:"${PATH}"
|
||||
export LD_LIBRARY_PATH="${HERE}"/usr/lib/:"${HERE}"/usr/lib/i386-linux-gnu/:"${HERE}"/usr/lib/x86_64-linux-gnu/:"${HERE}"/usr/lib32/:"${HERE}"/usr/lib64/:"${HERE}"/lib/:"${HERE}"/lib/i386-linux-gnu/:"${HERE}"/lib/x86_64-linux-gnu/:"${HERE}"/lib32/:"${HERE}"/lib64/:"${LD_LIBRARY_PATH}"
|
||||
export PYTHONPATH="${HERE}"/usr/share/pyshared/:"${PYTHONPATH}"
|
||||
export PYTHONHOME="${HERE}"/usr/
|
||||
export XDG_DATA_DIRS="${HERE}"/usr/share/:"${XDG_DATA_DIRS}"
|
||||
export PERLLIB="${HERE}"/usr/share/perl5/:"${HERE}"/usr/lib/perl5/:"${PERLLIB}"
|
||||
export GSETTINGS_SCHEMA_DIR="${HERE}"/usr/share/glib-2.0/schemas/:"${GSETTINGS_SCHEMA_DIR}"
|
||||
export QT_PLUGIN_PATH="${HERE}"/usr/lib/qt4/plugins/:"${HERE}"/usr/lib/i386-linux-gnu/qt4/plugins/:"${HERE}"/usr/lib/x86_64-linux-gnu/qt4/plugins/:"${HERE}"/usr/lib32/qt4/plugins/:"${HERE}"/usr/lib64/qt4/plugins/:"${HERE}"/usr/lib/qt5/plugins/:"${HERE}"/usr/lib/i386-linux-gnu/qt5/plugins/:"${HERE}"/usr/lib/x86_64-linux-gnu/qt5/plugins/:"${HERE}"/usr/lib32/qt5/plugins/:"${HERE}"/usr/lib64/qt5/plugins/:"${QT_PLUGIN_PATH}"
|
||||
EXEC=$APPDIR/r3/r3.sh
|
||||
#EXEC=$(grep -e '^Exec=.*' "${HERE}"/*.desktop | head -n 1 | cut -d "=" -f 2- | sed -e 's|%.||g')
|
||||
exec ${EXEC} "$@"
|
12
README.md
12
README.md
|
@ -1,3 +1,13 @@
|
|||
# r3-appimage
|
||||
|
||||
AppImage packaging template for The Red Robot Radio
|
||||
AppImage packaging template for The Red Robot Radio
|
||||
|
||||
# Packaging instructions
|
||||
|
||||
- Install [Arch-Deployer](https://github.com/ivan-hc/Arch-Deployer) on Arch Linux
|
||||
- Clone this repository
|
||||
- Unpack [r3 repo](https://patrice.asgardius.company/gitea/asgardius/r3) content on r3 folder
|
||||
- Create an image for python-pygame
|
||||
- copy template to appimage working directory
|
||||
- Pack it
|
||||
- Yout must get The_Red_Robot_Radio$ARCH.AppImage on desktop folder
|
9
r3.desktop
Normal file
9
r3.desktop
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Desktop Entry]
|
||||
Name=The Red Robot Radio
|
||||
Exec=AppRun
|
||||
Icon=r3
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;
|
||||
Keywords=Game;
|
||||
|
BIN
r3.png
Normal file
BIN
r3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
1
r3/README.md
Normal file
1
r3/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
The Red Robot Radio source code goes here
|
Loading…
Reference in a new issue