[377479]: / codesys-ide / install2.sh  Maximize  Restore  History

Download this file

149 lines (137 with data), 3.9 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/bin/bash
################################################################################
# Copyright 2017 Ingo Hornberger <ingo_@gmx.net>
#
# This software is licensed under the MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
# software and associated documentation files (the "Software"), to deal in the Software
# without restriction, including without limitation the rights to use, copy, modify,
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in all copies
# or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
################################################################################

WINE=wine-development
CDS_LINK="https://store.codesys.com/ftp_download/3S/CODESYS/300000/3.5.15.0/CODESYS%203.5.15.0.exe"
TRICKS_LINK="https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks"
ADDITIONAL_PACKAGES=https://forge.codesys.com/svn/tol,cforge,code/trunk/cforge.package
export WINEPREFIX=~/.wine.cds
export WINEARCH=win32

# kill current and subprocesses on exit
trap "kill 0" EXIT

function get
{
    wget --no-verbose --output-document=setup.exe -c "${CDS_LINK}"
    wget --no-verbose --output-document=winetricks -c "${TRICKS_LINK}" 
    chmod 755 winetricks 
    (
	mkdir -p Packages
	cd Packages
	for i in ${ADDITIONAL_PACKAGES}; do
		wget --no-verbose -c "${i}" 
	done
    )
}

function prereq
{
    echo -n "Checking prerequisite '${WINE}'"
    if which ${WINE}; then
	echo "=> OK"
    else
	echo "ERROR: Please install wine32-development and wine64-development"
	exit 1
    fi
}

function switch_to_win7
{
    # call wine to create new WINEPREFIX
    ${WINE} dir
    sleep 5
    # patch win version
    cp system.reg ${WINEPREFIX}
}

function winetricks
{
    ./winetricks -q vcrun2005 vcrun2008 vcrun2013 vcrun2015 dotnet46 &> /dev/zero
    wineserver-development -w
    ./winetricks nocrashdialog
    wineserver-development -w
}

function install
{
    WINEPREFIX=~/.wine.cds wine-development ./setup.exe /s /x /b"C:\tmp" /v"/qn"
    (
	wineserver-development -w
	cd ~/.wine.cds/drive_c/tmp
	msiextract *.msi
	mv Program*/CODESYS* ../CODESYS
	mv CommonAppData/CODESYS/* ../CODESYS/CODESYS/
    )
}

function post_install
{
    ${WINE} reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-0-0-0-1000"
    wineserver-development -w
}

no_check="y"
no_dl="y"
no_winetricks="y"
no_install="y"
no_postinstall="y"
case ${1} in
    --winetricks)
	no_winetricks=""
	;;
    --install)
	no_install=""
	;;
    --postinstall)
	no_postinstall=""
	;;
    -h)
	echo "usage: $0 <param>"
	echo "params:"
	echo "    --winetricks"
	echo "    --install"
	echo "    --postinstall"
	;;
    *)
	no_check=""
	no_dl=""
	no_winetricks=""
	no_install=""
	no_postinstall=""
	;;
esac

if [ -z ${no_check} ]; then
    echo "=== Checking Prerequisites ==="
    prereq
fi
if [ -z ${no_dl} ]; then
    echo "=== Downloading packets ==="
    get
fi
if [ -z ${no_winetricks} ]; then
    echo "=== Installing Prerequisites w/ winetricks ==="
    winetricks
fi
if [ -z ${no_install} ]; then
    echo "=== Installing CODESYS ==="
    install
fi
if [ -z ${no_postinstall} ]; then
    echo "=== Postinstall Fixups ==="
    post_install
fi

exit