These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Installation... confused....
#!/bin/bashprefix=~/bin/eveonlinelauncher=launcher.exeinstall="drive_c/EVE/eve.exe"# wine prefix to install eveprefix=~/bin/eveonline#name of the launcher we downloadlauncher=launcher.exe# windows internal installation, default is C:\\EVEinstall="drive_c/EVE/eve.exe"function run { echo run if [ ! -d "$prefix" ]; then inst ; fi WINEPREFIX=$prefix wine "$prefix/$install"}function inst { echo "instaling eve" mkdir -p "$prefix" if [ ! -f "$prefix/$launcher" ]; then link=$(wget http://community.eveonline.com/support/download/ -q -O - | grep binaries | grep exe | sed "s/.*href=\"\\(.*\\)\" class.*/\\1/g") echo "link resource is $link" wget "$link" -O "$prefix/$launcher" fi WINEPREFIX="$prefix" wine "$prefix/$launcher"}function clean { rm "$prefix/$launcher"}function del { rm -rf "$prefix"}if [ $# -eq 0 ]; then run exit 0ficase "$1" in "run") run ;; "inst") inst ;; "del") del;; "clean") clean;; *) echo "unknown option $1";;esac