Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mono-package-runtime « scripts - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e46266d074e13cbaeee4b1e1856de06990f92711 (plain)
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
#!/bin/bash
extension="${LIBEXT:-.dylib}"
if test `uname -o` = GNU/Linux; then
   extension="${LIBEXT:-.so}"
fi

if test x$2 = x; then
   echo usage is: mono-package-runtime MONO_INSTALL_PREFIX LABEL
   echo The file will be created in the current directory
   exit 1
fi

prefix=$1
output=$2
if test ! -d $prefix; then
   echo the specified path is not a directory: $prefix
   exit 1
fi

if test -e $output.zip; then
   echo The output file already exists, refusing to overwrite: $output.zip
   exit 1
fi

if test ! -e $prefix/bin/mono; then
   echo The $prefix does not contains a bin/mono
   exit 1
fi

if test ! -d $prefix/lib/mono/4.5; then
   echo The $prefix does not contains a lib/mono/4.5
   exit 1
fi

o=`pwd`/$output

cd $prefix
(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)
echo Created file $o.zip