-
Notifications
You must be signed in to change notification settings - Fork 8
/
install_xdev68k-utils.sh
263 lines (228 loc) · 9.74 KB
/
install_xdev68k-utils.sh
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/bash
#------------------------------------------------------------------------------
#
# install_xdev68k-utils.sh
#
# JP:
# xdev68k で必要になるユーティリティをダウンロードしインストールします。
# インストールはすべてカレントディレクトリ以下のフォルダに対して行われ、
# ユーザーのシステム環境に影響を与えません。
#
# EN:
# This script will download and install the necessary utilities for the
# xdev68k.
# All installation will be done to folders under the current directory
# and will not affect the user's system environment.
#
#------------------------------------------------------------------------------
#
# Copyright (C) 2022 Yosshin(@yosshin4004)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#------------------------------------------------------------------------------
# エラーが起きたらそこで終了させる。
# 未定義変数を参照したらエラーにする。
set -eu
# 作業用テンポラリディレクトリ
INSTALLER_TEMP_DIR=installer_temp
# 作業用テンポラリディレクトリがすでに存在するなら削除確認
if [ -d ${INSTALLER_TEMP_DIR} ]; then
echo "${INSTALLER_TEMP_DIR} already exists."
echo "Do you want to remove the existing directory and proceed? (Y/n)"
read ANS
case $ANS in
"" | [Yy]* )
echo "Yes"
rm -rf ${INSTALLER_TEMP_DIR}
;;
* )
echo "Aborted."
exit 1
;;
esac
fi
# 作業用テンポラリディレクトリの作成
mkdir -p ${INSTALLER_TEMP_DIR}
cd ${INSTALLER_TEMP_DIR}
#------------------------------------------------------------------------------
# run68 コマンドをソースからビルドしインストール
#------------------------------------------------------------------------------
ARCHIVE="master.zip"
wget -nc https://github.com/yosshin4004/run68mac/archive/refs/heads/${ARCHIVE}
unzip ${ARCHIVE}
cd run68mac-master/
mkdir build
cd build
# https://github.com/yosshin4004/xdev68k/issues/4
# に従い -G"Unix Makefiles" を付加した。
cmake -G"Unix Makefiles" ..
make
cd ../
cd ..
# インストール
mkdir -p ../archive/download
cp -p run68mac-master/build/run68* ../run68/
cp -p ${ARCHIVE} ../archive/download/run68mac-${ARCHIVE}
# run68.ini が正しく認識されていることを確認
if [ "$(expr substr $(uname -s) 1 5)" == "MINGW" ]; then
MEMSIZE=`../run68/run68 ..\\\\x68k_bin\\\\MEMSIZE.X`
else
MEMSIZE=`../run68/run68 ../x68k_bin/MEMSIZE.X`
fi
echo "available memory size on run68 is ${MEMSIZE} bytes"
if [ ${MEMSIZE} -lt 2097152 ]; then
echo "run68 memory size test failed!"
exit 1
fi
#------------------------------------------------------------------------------
# lha コマンドをソースからビルド
#------------------------------------------------------------------------------
ARCHIVE="release-20211125.zip"
SHA512SUM="e75dc606d7637f2c506072f2f44eda69da075a57ad2dc76f54e41b1d39d34ca01410317cc6538f8ea42f4da81ca14889df1195161f4e305d2d67189ec8e60e24"
wget -nc https://github.com/jca02266/lha/archive/refs/tags/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
unzip ${ARCHIVE}
cd lha-release-20211125/
autoreconf -is
sh ./configure
make
cd ../
# lha コマンド
LHA=lha-release-20211125/src/lha
#------------------------------------------------------------------------------
# HAS060.X のインストール
#------------------------------------------------------------------------------
ARCHIVE="HAS06091.LZH"
SHA512SUM="ed6c019cfaf57d23565f4ccb90c616bc54ffd4780e00d1b2ce6a8b2c3015938d254deff6bc1e15bbccb68cacb060a797a6e0fd23f2a3f032cdc8402232ed18bd"
wget -nc http://retropc.net/x68000/software/develop/as/has060/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
${LHA} -x -w=${ARCHIVE%.*} ${ARCHIVE}
# インストール
# cp コマンドに -p オプションを付けるのは、タイムスタンプを維持するためである。
# HAS060.X は「実行ファイルのタイムスタンプを書き換えてはいけない」と利用規約で
# 規定しているため、このような対応を行っている。
mkdir -p ../x68k_bin
mkdir -p ../archive/download
cp -p ${ARCHIVE%.*}/HAS060.X ../x68k_bin/
cp -p ${ARCHIVE} ../archive/download
#------------------------------------------------------------------------------
# HLK evolution のインストール
# version 3.01+15 になってから Out of memory エラーが出てしまう
#------------------------------------------------------------------------------
#ARCHIVE="hlkev15.zip"
#SHA512SUM="4fb22768f38f26f40e26e0e4a33797ecfff10f4c79966a286ea8c308020f666963b521f30f3333864decb003c16ec5e8824d491653b24faa4fce2330888c7166"
#wget -nc http://retropc.net/x68000/software/develop/lk/hlkev/${ARCHIVE}
#if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
# echo "SHA512SUM verification of ${ARCHIVE} failed!"
# exit 1
#fi
#unzip -x ${ARCHIVE}
#
# インストール
#mkdir -p ../x68k_bin
#mkdir -p ../archive/download
#cp -p ./hlk.r ../x68k_bin/
#cp -p ${ARCHIVE} ../archive/download
#------------------------------------------------------------------------------
# HLK v3.01 のインストール
#------------------------------------------------------------------------------
ARCHIVE="HLK301B.LZH"
SHA512SUM="afe6b96b6b9549cbddc1215bf534b255b840249d1d14e149a06d4b50591e1ac0842b207bb75ec0fb0f48c04dc1cf241a6e63c6c8834479ef38e470b1abbb9a7d"
wget -nc http://retropc.net/x68000/software/develop/lk/hlk/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
${LHA} -x -w=${ARCHIVE%.*} ${ARCHIVE}
# インストール
mkdir -p ../x68k_bin
mkdir -p ../archive/download
cp -p ${ARCHIVE%.*}/hlk301.x ../x68k_bin/
cp -p ${ARCHIVE} ../archive/download
#------------------------------------------------------------------------------
# g2as g2lk のインストール
#------------------------------------------------------------------------------
ARCHIVE="G3_20.LZH"
SHA512SUM="3a22c9c9fed1f8a5f4cb87640cb9dfaabeafec18098b12ce6e71eebcdb61f1a7571d0e17e8a5e7518466b8f243bdb1589281fd17b5fc754a3a997eb53f6848c0"
wget -nc http://retropc.net/x68000/software/develop/c/gcc2/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
${LHA} -x -w=${ARCHIVE%.*} ${ARCHIVE}
# インストール
mkdir -p ../x68k_bin
mkdir -p ../archive/download
cp -p ${ARCHIVE%.*}/g2as.x ../x68k_bin/
cp -p ${ARCHIVE%.*}/g2lk.x ../x68k_bin/
cp -p ${ARCHIVE} ../archive/download
#------------------------------------------------------------------------------
# C Compiler PRO-68K ver2.1(XC)から include/ lib/ AR.X DB.X をインストール
#------------------------------------------------------------------------------
ARCHIVE="XC2101.LZH"
SHA512SUM="5746f2100a7aa8428313ccb36cdba603601eaaa131f98aba2c22016b294e50fb612930ed5edd7dbdebe2d8f12d2ff0a81eb5c7c2f37e530debb44673903809e6"
wget -nc http://retropc.net/x68000/software/sharp/xc21/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
${LHA} -x -w=${ARCHIVE%.*} ${ARCHIVE}
ARCHIVE="XC2102_02.LZH"
SHA512SUM="c06339be8bf3251bb0b4a37365aa013a6083294edad17a3c4fafc35ab2cd2656260454642b1fa89645e3d796fe6c0ba67ce7f541d43e0a14b6529ce5aa113ede"
wget -nc http://retropc.net/x68000/software/sharp/xc21/${ARCHIVE}
if [ $(sha512sum ${ARCHIVE} | awk '{print $1}') != ${SHA512SUM} ]; then
echo "SHA512SUM verification of ${ARCHIVE} failed!"
exit 1
fi
${LHA} -x -w=${ARCHIVE%.*} ${ARCHIVE}
# ヘッダファイルを小文字に変換
# ヘッダファイル末尾の EOF(文字コード 0x1a)を除去
pushd XC2102_02/INCLUDE
# 大文字小文字を区別しないファイルシステムを想定し、一旦 *.tmp にリネームしたのち、小文字ファイル名に変換している。
for f in * ; do mv $f $f.tmp && mv $f.tmp `echo $f | awk '{print tolower($0)}'`; done
# ここで sed を使うと一部環境で正常動作しないので perl を利用している。
for f in * ; do cat $f | perl -pe 's/^\x1a$//g' > $f.tmp && rm $f && mv $f.tmp $f; done
popd
# インストール
rm -rf ../include/xc
rm -rf ../lib/xc
mkdir -p ../include/xc
mkdir -p ../lib/xc
mkdir -p ../x68k_bin
mkdir -p ../archive/download
cp -r XC2102_02/INCLUDE/* ../include/xc
cp -r XC2102_02/LIB/* ../lib/xc
cp -r XC2101/BIN/AR.X ../x68k_bin
cp -r XC2101/BIN/DB.X ../x68k_bin
cp -p XC2101.LZH ../archive/download
cp -p XC2102_02.LZH ../archive/download
#------------------------------------------------------------------------------
# 正常終了
#------------------------------------------------------------------------------
# 作業用テンポラリディレクトリの除去
cd ..
rm -rf ${INSTALLER_TEMP_DIR}
# 正常終了した旨を TTY 出力
echo ""
echo "-----------------------------------------------------------------------------"
echo "The installation process is completed successfully."
echo "Please set the current directory path to the environment variable XDEV68K_DIR."
echo "-----------------------------------------------------------------------------"
echo ""