Desura compatibility
- create launch scripts for Desura - that access local installation launch scripts - clean up /usr/* launch scripts created during make install
This commit is contained in:
3
Makefile
3
Makefile
@@ -270,6 +270,9 @@ install: all
|
|||||||
@$(INSTALL_PROGRAM) -m +rx openra $(BIN_INSTALL_DIR)
|
@$(INSTALL_PROGRAM) -m +rx openra $(BIN_INSTALL_DIR)
|
||||||
@$(INSTALL_PROGRAM) -m +rx openra-editor $(BIN_INSTALL_DIR)
|
@$(INSTALL_PROGRAM) -m +rx openra-editor $(BIN_INSTALL_DIR)
|
||||||
|
|
||||||
|
@-rm openra
|
||||||
|
@-rm openra-editor
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@-rm -r $(INSTALL_DIR)
|
@-rm -r $(INSTALL_DIR)
|
||||||
@-rm $(DESTDIR)$(bindir)/openra
|
@-rm $(DESTDIR)$(bindir)/openra
|
||||||
|
|||||||
24
desura_launch_Editor.sh
Executable file
24
desura_launch_Editor.sh
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd "`dirname "$(readlink -f "$0")"`"
|
||||||
|
|
||||||
|
if [ -e "desura_prelaunch.sh" ]; then
|
||||||
|
source desura_prelaunch.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
BIN_PATH="$HOME/.desura/games/openra/launch-editor.sh"
|
||||||
|
ARGS=
|
||||||
|
# TODO: This is crap.
|
||||||
|
libSDL_Path="$HOME/.desura/tools/63/"
|
||||||
|
libopenal_Path="$HOME/.desura/tools/73/"
|
||||||
|
libCgGL_PATH="$HOME/.desura/tools/78/"
|
||||||
|
libCg_PATH="$HOME/.desura/tools/79/"
|
||||||
|
libfreetype_Path="$HOME/.desura/tools/92/"
|
||||||
|
libGLU_Path="$HOME/.desura/tools/93/"
|
||||||
|
libalut_Path="$HOME/.desura/tools/195/"
|
||||||
|
|
||||||
|
if [ -n $ARGS ]; then
|
||||||
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$libSDL_Path:$libopenal_Path:$libCgGL_PATH:$libCg_PATH:$libfreetype_Path:$libGLU_Path:$libalut_Path $BIN_PATH $ARGS $@
|
||||||
|
else
|
||||||
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$libSDL_Path:$libopenal_Path:$libCgGL_PATH:$libCg_PATH:$libfreetype_Path:$libGLU_Path:$libalut_Path $BIN_PATH $@
|
||||||
|
fi
|
||||||
24
desura_launch_Play.sh
Executable file
24
desura_launch_Play.sh
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cd "`dirname "$(readlink -f "$0")"`"
|
||||||
|
|
||||||
|
if [ -e "desura_prelaunch.sh" ]; then
|
||||||
|
source desura_prelaunch.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
BIN_PATH="$HOME/.desura/games/openra/launch-game.sh"
|
||||||
|
ARGS=
|
||||||
|
# TODO: This is crap.
|
||||||
|
libSDL_Path="$HOME/.desura/tools/63/"
|
||||||
|
libopenal_Path="$HOME/.desura/tools/73/"
|
||||||
|
libCgGL_PATH="$HOME/.desura/tools/78/"
|
||||||
|
libCg_PATH="$HOME/.desura/tools/79/"
|
||||||
|
libfreetype_Path="$HOME/.desura/tools/92/"
|
||||||
|
libGLU_Path="$HOME/.desura/tools/93/"
|
||||||
|
libalut_Path="$HOME/.desura/tools/195/"
|
||||||
|
|
||||||
|
if [ -n $ARGS ]; then
|
||||||
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$libSDL_Path:$libopenal_Path:$libCgGL_PATH:$libCg_PATH:$libfreetype_Path:$libGLU_Path:$libalut_Path $BIN_PATH $ARGS $@
|
||||||
|
else
|
||||||
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$libSDL_Path:$libopenal_Path:$libCgGL_PATH:$libCg_PATH:$libfreetype_Path:$libGLU_Path:$libalut_Path $BIN_PATH $@
|
||||||
|
fi
|
||||||
2
launch-editor.sh
Executable file
2
launch-editor.sh
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
exec mono OpenRA.Editor.exe "$@"
|
||||||
2
launch-game.sh
Executable file
2
launch-game.sh
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
exec mono OpenRA.Game.exe "$@"
|
||||||
@@ -21,6 +21,9 @@ cp -T openra-bin $ROOTDIR/usr/bin/openra
|
|||||||
mkdir -p $ROOTDIR/usr/share/openra/
|
mkdir -p $ROOTDIR/usr/share/openra/
|
||||||
cp -R $BUILTDIR/* "$ROOTDIR/usr/share/openra/" || exit 3
|
cp -R $BUILTDIR/* "$ROOTDIR/usr/share/openra/" || exit 3
|
||||||
|
|
||||||
|
# Desura launch scripts
|
||||||
|
cp ../../*.sh "$ROOTDIR/usr/share/openra/" || exit 3
|
||||||
|
|
||||||
# Desktop Icons
|
# Desktop Icons
|
||||||
mkdir -p $ROOTDIR/usr/share/applications/
|
mkdir -p $ROOTDIR/usr/share/applications/
|
||||||
cp openra.desktop "$ROOTDIR/usr/share/applications/"
|
cp openra.desktop "$ROOTDIR/usr/share/applications/"
|
||||||
|
|||||||
Reference in New Issue
Block a user