summarylogtreecommitdiffstats
path: root/setup.sh.in
diff options
context:
space:
mode:
authorJernuh Zakalwe2019-12-08 15:39:01 +0100
committerJernuh Zakalwe2019-12-08 15:39:01 +0100
commit232333097a5f3749a9c84adbed10a306d76a9a2e (patch)
treec3408e4854584dd6c66e24e99231cbfd934dc01e /setup.sh.in
parent52d7226a95e83865d8be8125375ced1e41d2fab7 (diff)
downloadaur-232333097a5f3749a9c84adbed10a306d76a9a2e.tar.gz
In evesetup.shlib timewindow for versioncheck from 1min to 3min increased.
In case of missing wineboot wrapper script explicit wineboot call with wine command added. In setup.sh all xcb libraries added for removing (not needed on most Distributions). Minor grammar changes in build- and setup scripts. In evebackup file history.txt removed from backup.
Diffstat (limited to 'setup.sh.in')
-rw-r--r--setup.sh.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.sh.in b/setup.sh.in
index 67ae94ceb894..bacb6c08e7b7 100644
--- a/setup.sh.in
+++ b/setup.sh.in
@@ -60,7 +60,7 @@ build_lib() {
else
echo "Curl not found. Curl are needed for downloading evelauncher binaries."
echo " Please install curl with your Package Manager."
- printf "\nExiting.\n\n"
+ printf "\nLeaving.\n\n"
exit 0
fi
printf "\nDownload evelauncher-$elver.tar.gz...\n\n"
@@ -69,7 +69,7 @@ build_lib() {
rcsum="$(sha256sum ./evelauncher-$elver.tar.gz| cut -d' ' -f1)"
if [ "$rcsum" != "$elcsum" ] ;then
printf "\n\nError: Checksum from evelauncher-$elver.tar.gz doesn't match!"
- printf "\nExiting.\n\n"
+ printf "\nLeaving.\n\n"
exit 0
fi
printf "\nExtract evelauncher-$elver.tar.gz..."
@@ -77,7 +77,7 @@ build_lib() {
echo "done."
printf "\nClean up evelauncher directory..."
cd evelauncher/
- rm -f ./*.a ./*.la ./*.prl
+ rm -f ./*.a ./*.la ./*.prl ./libxcb*
chmod 0755 ./*
chmod 0644 ./*.qm ./*.conf ./errorpage/*
echo "done."
@@ -112,7 +112,7 @@ check_req() {
else
echo "Wine not found. Please install Wine with your Package Manager."
echo "WineHQ or Developer Version are recommended."
- printf "\nExiting.\n\n"
+ printf "\nLeaving.\n\n"
exit 0
fi
if [ -x "$(which winetricks 2>/dev/null)" ] ;then
@@ -120,7 +120,7 @@ check_req() {
else
echo "Winetricks not found. Winetricks are required."
echo " Please install Winetricks with your Package Manager."
- printf "\nExiting.\n\n"
+ printf "\nLeaving.\n\n"
exit 0
fi
}
@@ -137,7 +137,7 @@ key=""
if [ $(id -u) -ne 0 ] ;then
printf "\nEVE Online Launcher Setup need root permissions."
- printf "\nExiting.\n\n"
+ printf "\nLeaving.\n\n"
exit 0
fi