blob: 98a1cbc76dc020d0b1c90586c9a1b84ff858172f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh -x
rc-service networking start
# Install
apk add --no-progress wine zip xdotool xwd xvfb xvfb-run imagemagick upx
# Delete wine 32 bit
# Compress wine and libllvm
rm -rf /usr/lib/win/i386-windows
upx -7 -q --no-color --no-progress --strip-relocs=0 --compress-exports=0 --compress-icons=0 /usr/lib/wine/x86_64-windows/*.exe
# Delete cache
rm -rf /var/cache/apk/*
|