forked from madewokherd/wine-mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-winemono.sh
executable file
·497 lines (404 loc) · 15.7 KB
/
build-winemono.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#!/bin/sh
# setup
CURDIR="`pwd`"
MINGW_x86=i686-w64-mingw32
MINGW_x86_64=x86_64-w64-mingw32
INSTALL_DESTDIR="$CURDIR"
ORIGINAL_PATH="$PATH"
REBUILD=0
WINE=${WINE:-`which wine`}
MSIFILENAME=winemono.msi
BUILD_TESTS=0
usage ()
{
cat <<EOF
Usage: build-winemono.sh [OPTIONS]
where OPTIONS are:
-m MINGW Sets the x86 MINGW target name to be passed to configure [$MINGW_x86]
-M MINGW Sets the amd64 MINGW target name to be passed to configure [$MINGW_x86_64]
-t Build the mono test suite
-r Rebuild (skips configure)
EOF
exit 1
}
while getopts "d:m:D:M:trh" opt; do
case "$opt" in
m) MINGW_x86="$OPTARG" ;;
M) MINGW_x86_64="$OPTARG" ;;
t) BUILD_TESTS=1 ;;
r) REBUILD=1 ;;
*) usage ;;
esac
done
# function definitions
cross_build_mono ()
{
# Unset CC, if it is set, otherwise the build scripts will attempt to use the wrong compiler
unset CC
local MINGW=$1
local ARCH=$2
if test 1 != $REBUILD; then
rm -rf "$CURDIR/build-cross-$ARCH"
fi
if test ! -d "$CURDIR/build-cross-$ARCH"; then
mkdir "$CURDIR/build-cross-$ARCH"
fi
cd "$CURDIR/build-cross-$ARCH"
if test 1 != $REBUILD || test ! -e Makefile; then
../mono/configure --prefix="$CURDIR/build-cross-$ARCH-install" --build=$BUILD --target=$MINGW --host=$MINGW --with-tls=none --disable-mcs-build --enable-win32-dllmain=yes --with-libgc-threads=win32 PKG_CONFIG=false mono_cv_clang=no || exit 1
sed -e 's/-lgcc_s//' -i libtool
fi
WINEPREFIX=/dev/null make $MAKEOPTS || exit 1
cd "$CURDIR/build-cross-$ARCH/support"
WINEPREFIX=/dev/null make $MAKEOPTS || exit 1
rm -rf "$CURDIR/build-cross-$ARCH-install"
cd "$CURDIR/build-cross-$ARCH"
make install || exit 1
cd "$CURDIR"
mkdir -p "$CURDIR/image/bin"
cp "$CURDIR/build-cross-$ARCH-install/bin/libmono-2.0.dll" "$CURDIR/image/bin/libmono-2.0-$ARCH.dll"
cp "$CURDIR/build-cross-$ARCH/support/.libs/libMonoPosixHelper.dll" "$CURDIR/image/bin/MonoPosixHelper-$ARCH.dll"
}
build_cli ()
{
# build mono
if test 1 != $REBUILD; then
rm -rf "$CURDIR/build-cross-cli"
fi
if test ! -d "$CURDIR/build-cross-cli"; then
mkdir "$CURDIR/build-cross-cli"
fi
cd "$CURDIR/build-cross-cli"
if test 1 != $REBUILD || test ! -e Makefile; then
../mono/configure --prefix="$CURDIR/build-cross-cli-install" --with-mcs-docs=no --disable-system-aot || exit 1
fi
make $MAKEOPTS || exit 1
rm -rf "$CURDIR/build-cross-cli-install"
make install || exit 1
cd "$CURDIR"
# build tests if necessary
if test x$BUILD_TESTS = x1; then
for profile in `ls "$CURDIR/mono/mcs/class/lib"`; do
if test -e "$CURDIR/mono/mcs/class/lib/$profile/nunit-console.exe"; then
cd "$CURDIR/mono/mcs/class/"
make $MAKEOPTS -k test PROFILE=$profile
rm -rf "$CURDIR/tests-$profile"
mkdir "$CURDIR/tests-$profile"
cd "$CURDIR/mono/mcs/class"
cp */*_test_$profile.dll "$CURDIR/tests-$profile"
# System.Drawing test's extra files
mkdir -p "$CURDIR/tests-$profile/Test/System.Drawing"
cp -r System.Drawing/Test/System.Drawing/bitmaps "$CURDIR/tests-$profile/Test/System.Drawing"
cd "$CURDIR/mono/mcs/class/lib/$profile"
cp nunit* "$CURDIR/tests-$profile"
fi
done
fi
# set up for further builds
export PATH="$CURDIR/build-cross-cli-install/bin":$PATH
export LD_LIBRARY_PATH="$CURDIR/build-cross-cli-install/lib":$LD_LIBRARY_PATH
export MONO_GAC_PREFIX="$CURDIR/build-cross-cli-install"
export MONO_CFG_DIR="$CURDIR/build-cross-cli-install/etc"
# build mono-basic
cd "$CURDIR/mono-basic"
./configure --prefix="$CURDIR/build-cross-cli-install" || exit 1
make $MAKEOPTS || exit 1
make install || exit 1
# build OpenTK
cd "$CURDIR/opentk"
xbuild Source/OpenTK/OpenTK.csproj /p:Configuration=Xna4 || exit 1
cp 'Wine.OpenTK, Version=4.0.0.0.dll' Wine.OpenTK.dll
gacutil -i Wine.OpenTK.dll
ln -s "$CURDIR/opentk/Wine.OpenTK, Version=4.0.0.0.dll" "$CURDIR/build-cross-cli-install/lib/mono/4.0/Wine.OpenTK.dll"
# build MonoGame
cd "$CURDIR/MonoGame"
xbuild MonoGame.Framework.Wine.sln /p:Configuration=Release || exit 1
gacutil -i ThirdParty/Lidgren.Network/bin/Release/Lidgren.Network.Wine.dll || exit 1
gacutil -i MonoGame.Framework/bin/Release/MonoGame.Framework.Wine.dll || exit 1
for name in Microsoft.Xna.Framework Microsoft.Xna.Framework.Game Microsoft.Xna.Framework.Graphics Microsoft.Xna.Framework.Xact; do
sn -R ${name}/bin/Release/${name}.dll ../mono/mcs/class/mono.snk || exit 1
gacutil -i ${name}/bin/Release/${name}.dll || exit 1
done
# build image/ directory
cd "$CURDIR"
mkdir -p "$CURDIR/image/lib"
cp -r "$CURDIR/build-cross-cli-install/etc" "$CURDIR/image/"
cp -r "$CURDIR/build-cross-cli-install/lib/mono" "$CURDIR/image/lib"
cp "$CURDIR/build-cross-cli-install/etc/mono/2.0/machine.config" "$CURDIR/image/1.1-machine.config"
cp "$CURDIR/build-cross-cli-install/etc/mono/2.0/machine.config" "$CURDIR/image/2.0-machine.config"
cp "$CURDIR/build-cross-cli-install/etc/mono/4.0/machine.config" "$CURDIR/image/4.0-machine.config"
cp "$CURDIR/build-cross-cli-install/lib/mono/2.0/mscorlib.dll" "$CURDIR/image/1.1-mscorlib.dll"
cp "$CURDIR/build-cross-cli-install/lib/mono/2.0/mscorlib.dll" "$CURDIR/image/2.0-mscorlib.dll"
cp "$CURDIR/build-cross-cli-install/lib/mono/4.0/mscorlib.dll" "$CURDIR/image/4.0-mscorlib.dll"
# remove debug files
for f in `find image|grep '\.mdb$'`; do
rm "$f"
done
}
build_directorytable ()
{
printf 'Directory\tDirectory_Parent\tDefaultDir\n'
printf 's72\tS72\tl255\n'
printf 'Directory\tDirectory\n'
printf 'TARGETDIR\t\tSourceDir\n'
printf 'MONODIR\tMONOBASEDIR\tmono-2.0:.\n'
printf 'MONOBASEDIR\tWindowsFolder\tmono:.\n'
printf 'WindowsFolder\tTARGETDIR\t.\n'
printf 'WindowsDotNet\tWindowsFolder\tMicrosoft.NET\n'
printf 'WindowsDotNetFramework\tWindowsDotNet\tFramework\n'
printf 'WindowsDotNetFramework11\tWindowsDotNetFramework\tv1.1.4322\n'
printf 'WindowsDotNetFramework11Config\tWindowsDotNetFramework11\tCONFIG\n'
printf 'WindowsDotNetFramework20\tWindowsDotNetFramework\tv2.0.50727\n'
printf 'WindowsDotNetFramework20Config\tWindowsDotNetFramework20\tCONFIG\n'
printf 'WindowsDotNetFramework30\tWindowsDotNetFramework\tv3.0\n'
printf 'WindowsDotNetFramework30wcf\tWindowsDotNetFramework30\twindows communication foundation\n'
printf 'WindowsDotNetFramework30wpf\tWindowsDotNetFramework30\twpf\n'
printf 'WindowsDotNetFramework40\tWindowsDotNetFramework\tv4.0.30319\n'
printf 'WindowsDotNetFramework40Config\tWindowsDotNetFramework40\tCONFIG\n'
cd "$CURDIR/image"
for f in `find -type d | cut -d '/' -f2-`; do
if test x. = x$f; then
continue
fi
KEY=`echo $f|sed -e 's/\//|/g'`
DIRNAME=`dirname $f|sed -e 's/\//|/g'`
if test x. = x$DIRNAME; then
DIRNAME=MONODIR
fi
BASENAME=`basename $f`
printf '%s\t%s\t%s\n' "$KEY" "$DIRNAME" "$BASENAME"
done
cd "$CURDIR"
}
build_componenttable ()
{
printf 'Component\tComponentId\tDirectory_\tAttributes\tCondition\tKeyPath\n'
printf 's72\tS38\ts72\ti2\tS255\tS72\n'
printf 'Component\tComponent\n'
printf 'mono-registry\t{93BE4304-497C-4ACB-A0FD-1C3695C011B4}\tWindowsDotNetFramework\t4\t\tDotNetFrameworkInstallRoot\n'
printf 'mono-registry64\t{E088D122-0696-4137-BC4E-C999303B4BE2}\tWindowsDotNetFramework\t260\t\tDotNetFrameworkInstallRoot\n'
printf 'config-1.1\t{0DA29B5A-2050-4200-92EE-442D1EE6CF96}\tWindowsDotNetFramework11Config\t0\t\t1.1-machine.config\n'
printf 'config-2.0\t{ABB0BF6A-6610-4E45-8194-64D596667621}\tWindowsDotNetFramework20Config\t0\t\t2.0-machine.config\n'
printf 'config-4.0\t{511C0294-4504-4FC9-B5A7-E85CCEE95C6B}\tWindowsDotNetFramework40Config\t0\t\t4.0-machine.config\n'
printf 'dotnet-folder\t{22DCE198-F30F-4E74-AEC6-D089B844A878}\tWindowsDotNet\t0\t\t\n' # needed to remove the folder
printf 'framework-folder\t{41B3A67B-63F4-4491-A53C-9E792BE5A889}\tWindowsDotNetFramework\t0\t\t\n'
printf 'framework11-folder\t{20F5741D-4655-400D-8373-7607A84D2478}\tWindowsDotNetFramework11\t0\t\tmscorlib.dll\n'
printf 'framework20-folder\t{B845FD54-09B7-467C-800F-205A142F2F20}\tWindowsDotNetFramework20\t0\t\tmscorlib.dll\n'
printf 'framework30-folder\t{C3221C80-F9D2-41B5-91E1-F6ADBB05ABBC}\tWindowsDotNetFramework30\t0\t\t\n'
printf 'framework30wcf-folder\t{1ECAD22C-31C2-4BAC-AC74-78883C396FAB}\tWindowsDotNetFramework30wcf\t0\t\t\n'
printf 'framework30wpf-folder\t{3C146462-0CAF-4F07-83E6-A75A2A5DE961}\tWindowsDotNetFramework30wpf\t0\t\t\n'
printf 'framework40-folder\t{29ECF991-3E9E-4D23-B0B2-874631642B13}\tWindowsDotNetFramework40\t0\t\tmscorlib.dll\n'
printf 'monobase-folder\t{BE46D94A-7443-4B5C-9B91-6A83815365AB}\tMONOBASEDIR\t0\t\t\n'
printf 'mono-folder\t{FD7F9172-4E35-4DF5-BD6A-FB7B795D9346}\tMONODIR\t0\t\t\n'
cd "$CURDIR/image"
for f in `find -type d | cut -d '/' -f2-`; do
if test x. = x$f; then
continue
fi
KEY=`echo $f|sed -e 's/\//|/g'`
if test ! -f "$CURDIR/component-guids/${KEY}.guid"; then
uuidgen | tr [a-z] [A-Z] > $CURDIR/component-guids/${KEY}.guid
fi
GUID=`cat "$CURDIR/component-guids/${KEY}.guid"`
KEYPATH=`find "$f" -maxdepth 1 -type f|sort|head -n 1|sed -e 's/\//!/g'`
printf '%s\t{%s}\t%s\t0\t\t%s\n' "$KEY" "$GUID" "$KEY" "$KEYPATH"
done
cd "$CURDIR"
}
build_createfoldertable ()
{
printf 'Directory_\tComponent_\n'
printf 's72\ts72\n'
printf 'CreateFolder\tDirectory_\tComponent_\n'
printf 'WindowsDotNet\tdotnet-folder\n'
printf 'WindowsDotNetFramework\tframework-folder\n'
printf 'WindowsDotNetFramework11\tframework11-folder\n'
printf 'WindowsDotNetFramework20\tframework20-folder\n'
printf 'WindowsDotNetFramework30\tframework30-folder\n'
printf 'WindowsDotNetFramework30wcf\tframework30wcf-folder\n'
printf 'WindowsDotNetFramework30wpf\tframework30wpf-folder\n'
printf 'WindowsDotNetFramework40\tframework40-folder\n'
printf 'MONOBASEDIR\tmonobase-folder\n'
printf 'MONODIR\tmono-folder\n'
cd "$CURDIR/image"
for f in `find -type d | cut -d '/' -f2-`; do
if test x. = x$f; then
continue
fi
FILE=`find "$f" -maxdepth 1 -type f`
if test ! "$FILE"; then
KEY=`echo $f|sed -e 's/\//|/g'`
printf '%s\t%s\n' "$KEY" "$KEY"
fi
done
cd "$CURDIR"
}
build_featurecomponentstable ()
{
printf 'Feature_\tComponent_\n'
printf 's38\ts72\n'
printf 'FeatureComponents\tFeature_\tComponent_\n'
printf 'wine_mono\tmono-registry\n'
printf 'wine_mono\tmono-registry64\n'
printf 'wine_mono\tconfig-1.1\n'
printf 'wine_mono\tconfig-2.0\n'
printf 'wine_mono\tconfig-4.0\n'
printf 'wine_mono\tdotnet-folder\n'
printf 'wine_mono\tframework-folder\n'
printf 'wine_mono\tframework11-folder\n'
printf 'wine_mono\tframework20-folder\n'
printf 'wine_mono\tframework30-folder\n'
printf 'wine_mono\tframework30wcf-folder\n'
printf 'wine_mono\tframework30wpf-folder\n'
printf 'wine_mono\tframework40-folder\n'
printf 'wine_mono\tmonobase-folder\n'
printf 'wine_mono\tmono-folder\n'
cd "$CURDIR/image"
for f in `find -type d | cut -d '/' -f2-`; do
if test x. = x$f; then
continue
fi
KEY=`echo $f|sed -e 's/\//|/g'`
printf 'wine_mono\t%s\n' "$KEY"
done
cd "$CURDIR"
}
build_filetable ()
{
printf 'File\tComponent_\tFileName\tFileSize\tVersion\tLanguage\tAttributes\tSequence\n'
printf 's72\ts72\tl255\ti4\tS72\tS20\tI2\ti2\n'
printf 'File\tFile\n'
SEQ=0
cd "$CURDIR/image"
for f in `find -type f | cut -d '/' -f2- | sort`; do
SEQ=`expr $SEQ + 1`
KEY=`echo $f|sed -e 's/\//!/g'`
FILESIZE=`stat --format=%s $f`
case $f in 1.1-machine.config)
COMPONENT=config-1.1
BASENAME=machine.config
;;
2.0-machine.config)
COMPONENT=config-2.0
BASENAME=machine.config
;;
4.0-machine.config)
COMPONENT=config-4.0
BASENAME=machine.config
;;
1.1-mscorlib.dll)
COMPONENT=framework11-folder
BASENAME=mscorlib.dll
;;
2.0-mscorlib.dll)
COMPONENT=framework20-folder
BASENAME=mscorlib.dll
;;
4.0-mscorlib.dll)
COMPONENT=framework40-folder
BASENAME=mscorlib.dll
;;
*)
COMPONENT=`dirname $f|sed -e 's/\//|/g'`
BASENAME=`basename $f`
;;
esac
printf '%s\t%s\t%s\t%s\t\t\t\t%s\n' "$KEY" "$COMPONENT" "$BASENAME" "$FILESIZE" "$SEQ"
done
IMAGECAB_SEQ=$SEQ
cd "$CURDIR"
}
build_mediatable ()
{
printf 'DiskId\tLastSequence\tDiskPrompt\tCabinet\tVolumeLabel\tSource\n'
printf 'i2\ti4\tL64\tS255\tS32\tS72\n'
printf 'Media\tDiskId\n'
printf '1\t%s\t\t#image.cab\t\t' "$IMAGECAB_SEQ"
}
hex_to_binary ()
{
HEXCHAR=`head -c 2|tr [a-f] [A-F]`
while test x != x"$HEXCHAR"; do
printf '\'`echo 'ibase=16; obase=8;' $HEXCHAR|bc`
HEXCHAR=`head -c 2|tr [a-f] [A-F]`
done
}
format_od_output ()
{
printf '%s\t%s\t%s\t%s\n' $2 $3 $4 $5
}
build_msifilehashtable ()
{
printf 'File_\tOptions\tHashPart1\tHashPart2\tHashPart3\tHashPart4\n'
printf 's72\ti2\ti4\ti4\ti4\ti4\n'
printf 'MsiFileHash\tFile_\n'
cd "$CURDIR/image"
for f in `find -type f | cut -d '/' -f2- | sort`; do
KEY=`echo $f|sed -e 's/\//!/g'`
FILESIZE=`stat --format=%s $f`
printf '%s\t0\t' "$KEY"
if test $FILESIZE -eq 0; then
printf '0\t0\t0\t0\n'
else
format_od_output `md5sum $f|head -c 32|hex_to_binary|od -v -t d4`
fi
done
cd "$CURDIR"
}
build_msi ()
{
rm -rf cab-contents
rm -f image.cab "${MSIFILENAME}"
mkdir "$CURDIR/cab-contents"
cd "$CURDIR/image"
for f in `find -type f | cut -d '/' -f2-`; do
KEY=`echo $f|sed -e 's/\//!/g'`
ln -s "$CURDIR/image/$f" "$CURDIR/cab-contents/$KEY"
done
cd "$CURDIR/cab-contents"
"${WINE}" cabarc -m mszip -r -p N ../image.cab *
cd "$CURDIR"
build_directorytable > msi-tables/directory.idt
build_componenttable > msi-tables/component.idt
build_createfoldertable > msi-tables/createfolder.idt
build_featurecomponentstable > msi-tables/featurecomponents.idt
build_filetable > msi-tables/file.idt
build_mediatable > msi-tables/media.idt
build_msifilehashtable > msi-tables/msifilehash.idt
"$WINE" winemsibuilder -i "${MSIFILENAME}" msi-tables/*.idt
"$WINE" winemsibuilder -a "${MSIFILENAME}" image.cab image.cab
}
sanity_checks ()
{
# Make sure a few programs are around, otherwise we'll fail later on:
if test ! -x "$WINE"
then
echo "You need to have wine installed. You can set the path to it with WINE=/path/to/wine"
exit 1
fi
if test ! -x "`which gmcs 2>/dev/null`"
then
echo "You need to have gmcs from mono installed."
exit 1
fi
}
# build
sanity_checks
cd "$CURDIR"/mono
if test 1 != $REBUILD || test ! -e configure; then
# create configure script and such
NOCONFIGURE=yes ./autogen.sh || exit 1
BUILD="`./config.guess`"
if test -f ./Makefile; then
rm -rf autom4te.cache
fi
fi
cd "$CURDIR"
rm -rf image
mkdir image
cross_build_mono "$MINGW_x86_64" x86_64
cross_build_mono "$MINGW_x86" x86
build_cli
mkdir image/support
cp dotnetfakedlls.inf image/support/
build_msi