-
Notifications
You must be signed in to change notification settings - Fork 209
Expand file tree
/
Copy pathbuild-mac-wine-package.sh
More file actions
executable file
·46 lines (36 loc) · 2.42 KB
/
Copy pathbuild-mac-wine-package.sh
File metadata and controls
executable file
·46 lines (36 loc) · 2.42 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
#!/usr/bin/env bash
set -e
# This script builds a macOS package for a Wine application.
# See https://github.com/majorsilence/wine-bundler
export WINEPREFIX=/opt/majorsilence/wine64
export WINEARCH=win64
mkdir -p /opt/majorsilence && apt update \
&& dpkg --add-architecture i386 \
&& apt update \
&& apt install -y --no-install-recommends software-properties-common gnupg2 icnsutils xz-utils zip bc wget curl imagemagick icoutils rsync sed coreutils jq grep \
&& mkdir -pm755 /etc/apt/keyrings \
&& wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key \
&& wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources \
&& apt update \
&& apt install -y winehq-devel winbind cabextract xvfb \
&& mkdir -p $WINEPREFIX \
&& apt-get clean
winecfg && wineboot -u && wineserver -k
wget --user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0" -O /opt/majorsilence/windowsdesktop-runtime-8-win-x64.exe https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/8.0.19/windowsdesktop-runtime-8.0.19-win-x64.exe \
&& ls -la /opt/majorsilence \
&& xvfb-run wine /opt/majorsilence/windowsdesktop-runtime-8-win-x64.exe /quiet /install /norestart \& \
&& sleep 60 \
&& rm -rf /opt/majorsilence/windowsdesktop-runtime-8-win-x64.exe
# download bash script https://raw.githubusercontent.com/majorsilence/wine-bundler/refs/heads/master/wine-bundler
wget -O /opt/majorsilence/wine-bundler https://raw.githubusercontent.com/majorsilence/wine-bundler/refs/heads/master/wine-bundler \
&& chmod +x /opt/majorsilence/wine-bundler
mkdir -p /opt/majorsilence/wine64/drive_c/app
echo 'Directory created'
cp -r /build-output/Release-Builds/build-output/majorsilence-reporting-designer-net8.0-windows-anycpu/net8.0-windows/* /opt/majorsilence/wine64/drive_c/app
echo 'Files copied'
echo 'Changed directory'
mkdir -p /build-output/build/workingdirectory/
mkdir -p /build-output/macpackage-output/
cd /build-output/macpackage-output/
/opt/majorsilence/wine-bundler -i /build-output/Release-Builds/build-output/majorsilence-reporting-designer-net8.0-windows-anycpu/net8.0-windows/reporting.ico -n \\"Majorsilence Reporting Designer\\" -c en_US.UTF-8 -w devel -a win64 -p /opt/majorsilence/wine64 -t /build-output/build/workingdirectory/.cache -s 'c:\\app\\ReportDesigner.exe'
ls -la /build-output/macpackage-output/