summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 76f33973cf8980129d3d5c2304105a0d97879ca8 (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
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
# Maintainer: Daniel Bermond <dbermond@archlinux.org>

pkgname=wine-staging-git
pkgver=10.11.r0.g3e94d124
pkgrel=1
pkgdesc='A compatibility layer for running Windows programs (staging branch, git version)'
arch=('x86_64')
url='https://www.wine-staging.com/'
license=('LGPL-2.1-or-later')
depends=(
    'attr'
    'desktop-file-utils'
    'fontconfig'
    'freetype2'
    'gcc-libs'
    'gettext'
    'glib2'
    'glibc'
    'libpcap'
    'libunwind'
    'libx11'
    'libxcursor'
    'libxext'
    'libxi'
    'libxkbcommon'
    'libxrandr'
    'systemd-libs'
    'wayland')
makedepends=(
    'alsa-lib'
    'ffmpeg'
    'giflib'
    'git'
    'gnutls'
    'gst-plugins-base-libs'
    'gstreamer'
    'gtk3'
    'libcups'
    'libgphoto2'
    'libpulse'
    'libusb'
    'libva'
    'libxcomposite'
    'libxinerama'
    'libxxf86vm'
    'mesa'
    'mingw-w64-gcc'
    'opencl-headers'
    'opencl-icd-loader'
    'perl'
    'pcsclite'
    'samba'
    'sane'
    'sdl2'
    'v4l-utils'
    'vulkan-icd-loader')
optdepends=(
    'alsa-lib'
    'alsa-plugins'
    'cups'
    'dosbox'
    'ffmpeg'
    'giflib'
    'gnutls'
    'gst-plugins-base-libs'
    'gstreamer'
    'gtk3'
    'libgphoto2'
    'libpulse'
    'libusb'
    'libva'
    'libxcomposite'
    'libxinerama'
    'opencl-icd-loader'
    'perl'
    'pcsclite'
    'samba'
    'sane'
    'sdl2'
    'v4l-utils'
    'vulkan-icd-loader'
    'wine-gecko'
    'wine-mono')
options=('!lto')
install="${pkgname}.install"
provides=("wine-staging=${pkgver}" "wine=${pkgver%%.r*}" 'wine-wow64')
conflicts=('wine' 'wine-wow64')
source=('git+https://gitlab.winehq.org/wine/wine-staging.git'
        'git+https://gitlab.winehq.org/wine/wine.git'
        '30-win32-aliases.conf'
        'wine-binfmt.conf')
sha256sums=('SKIP'
            'SKIP'
            '9901a5ee619f24662b241672a7358364617227937d5f6d3126f70528ee5111e7'
            '6dfdefec305024ca11f35ad7536565f5551f09119dda2028f194aee8f77077a4')

prepare() {
    mkdir -p build
    
    # restore the wine tree to its git origin state, without wine-staging patches
    printf '%s\n' '  -> Cleaning wine source code tree...'
    git -C wine reset --hard HEAD  # restore tracked files
    git -C wine clean -xdf         # delete untracked files
    
    # change back to the wine upstream commit that this version of wine-staging is based in
    printf '%s\n' '  -> Changing wine HEAD to the wine-staging base commit...'
    git -C wine config --local advice.detachedHead false
    git -C wine checkout "$(wine-staging/staging/patchinstall.py --upstream-commit)"
    
    # apply all wine-staging patches
    printf '%s\n' '  -> Applying wine-staging patches...'
    wine-staging/staging/patchinstall.py DESTDIR="${srcdir}/wine" --all
}

pkgver() {
    git -C wine-staging describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^wine.//;s/^v//;s/\.rc/rc/'
}

build() {
    # apply flags for cross-compilation
    export CROSSCFLAGS="${CFLAGS/-Werror=format-security/} -g"
    export CROSSCXXFLAGS="${CXXFLAGS/-Werror=format-security/} -g"
    export CROSSLDFLAGS="${LDFLAGS//-Wl,-z*([^[:space:]])/}"
    
    cd build
    ../wine/configure \
        --prefix='/usr' \
        --libdir='/usr/lib' \
        --disable-tests \
        --enable-archs="${CARCH},i386"
    make
}

package() {
    make -C build \
        prefix="${pkgdir}/usr" \
        libdir="${pkgdir}/usr/lib" \
        dlldir="${pkgdir}/usr/lib/wine" \
        install
    
    # font aliasing settings for win32 applications
    install -d -m755 "${pkgdir}/usr/share/fontconfig/conf.default"
    install -D -m644 "${srcdir}/30-win32-aliases.conf" -t "${pkgdir}/usr/share/fontconfig/conf.avail"
    ln -s ../conf.avail/30-win32-aliases.conf "${pkgdir}/usr/share/fontconfig/conf.default/30-win32-aliases.conf"
    
    # wine binfmt
    install -D -m644 "${srcdir}/wine-binfmt.conf" "${pkgdir}/usr/lib/binfmt.d/wine.conf"
    
    # strip native PE libraries
    i686-w64-mingw32-strip --strip-unneeded "${pkgdir}/usr/lib/wine/i386-windows"/*.dll
    "${CARCH}-w64-mingw32-strip" --strip-unneeded "${pkgdir}/usr/lib/wine/${CARCH}-windows"/*.dll
}