[interp] Add a few starting stats (#13347)
[mono-project.git] / scripts / mono-package-runtime
blobe46266d074e13cbaeee4b1e1856de06990f92711
1 #!/bin/bash
2 extension="${LIBEXT:-.dylib}"
3 if test `uname -o` = GNU/Linux; then
4 extension="${LIBEXT:-.so}"
5 fi
7 if test x$2 = x; then
8 echo usage is: mono-package-runtime MONO_INSTALL_PREFIX LABEL
9 echo The file will be created in the current directory
10 exit 1
13 prefix=$1
14 output=$2
15 if test ! -d $prefix; then
16 echo the specified path is not a directory: $prefix
17 exit 1
20 if test -e $output.zip; then
21 echo The output file already exists, refusing to overwrite: $output.zip
22 exit 1
25 if test ! -e $prefix/bin/mono; then
26 echo The $prefix does not contains a bin/mono
27 exit 1
30 if test ! -d $prefix/lib/mono/4.5; then
31 echo The $prefix does not contains a lib/mono/4.5
32 exit 1
35 o=`pwd`/$output
37 cd $prefix
38 (zip -u $o.zip bin/mono lib/mono/4.5/mscorlib.dll lib/mono/4.5/System*dll lib/mono/4.5/Mono.CSharp.dll lib/mono/4.5/Microsoft*dll lib/mono/4.5/FSharp*.dll lib/mono/4.5/I18N*dll lib/mono/4.5/Accessibility.dll lib/mono/4.5/RabbitMQ.Client.dll lib/mono/4.5/ICSharpCode.SharpZipLib.dll lib/mono/4.5/CustomMarshalers.dll etc/mono/config etc/mono/4.5/machine.config etc/mono/4.5/web.config lib/mono/4.5/Mono.Cairo.dll lib/mono/4.5/Mono.Data.Sqlite.dll lib/mono/4.5/Mono.Posix.dll lib/mono/4.5/Mono.Security.*dll lib/mono/4.5/Mono.Simd.dll lib/libMonoSupportW$extension lib/libMonoPosixHelper$extension lib/libmono-btls-shared$extension)
39 echo Created file $o.zip