-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
153 lines (142 loc) · 5.14 KB
/
PKGBUILD
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
153
# Maintainer : Daniel Bermond <[email protected]>
# Contributor: Sidney Crestani <[email protected]>
# Contributor: sxe <[email protected]>
# Modified by Grunt
pkgname=wine-git
pkgver=8.7.r0.gffe889e4b89
pkgrel=1
pkgdesc='A compatibility layer for running Windows programs (git version with Affinity patches)'
arch=('x86_64')
url='https://www.winehq.org/'
license=('LGPL')
depends=(
'fontconfig' 'lib32-fontconfig'
'libxcursor' 'lib32-libxcursor'
'libxrandr' 'lib32-libxrandr'
'libxi' 'lib32-libxi'
'gettext' 'lib32-gettext'
'freetype2' 'lib32-freetype2'
'gcc-libs' 'lib32-gcc-libs'
'libpcap' 'lib32-libpcap'
'desktop-file-utils'
)
makedepends=('git' 'perl' 'mingw-w64-gcc'
'giflib' 'lib32-giflib'
'gnutls' 'lib32-gnutls'
'libxinerama' 'lib32-libxinerama'
'libxcomposite' 'lib32-libxcomposite'
'libxxf86vm' 'lib32-libxxf86vm'
'v4l-utils' 'lib32-v4l-utils'
'alsa-lib' 'lib32-alsa-lib'
'libxcomposite' 'lib32-libxcomposite'
'mesa' 'lib32-mesa'
'mesa-libgl' 'lib32-mesa-libgl'
'opencl-icd-loader' 'lib32-opencl-icd-loader'
'libpulse' 'lib32-libpulse'
'libva' 'lib32-libva'
'gtk3' 'lib32-gtk3'
'gst-plugins-base-libs' 'lib32-gst-plugins-base-libs'
'vulkan-icd-loader' 'lib32-vulkan-icd-loader'
'sdl2' 'lib32-sdl2'
'libcups' 'lib32-libcups'
'sane'
'libgphoto2'
'ffmpeg'
'samba'
'opencl-headers'
)
optdepends=(
'giflib' 'lib32-giflib'
'gnutls' 'lib32-gnutls'
'v4l-utils' 'lib32-v4l-utils'
'libpulse' 'lib32-libpulse'
'alsa-plugins' 'lib32-alsa-plugins'
'alsa-lib' 'lib32-alsa-lib'
'libxcomposite' 'lib32-libxcomposite'
'libxinerama' 'lib32-libxinerama'
'opencl-icd-loader' 'lib32-opencl-icd-loader'
'libva' 'lib32-libva'
'gtk3' 'lib32-gtk3'
'gst-plugins-base-libs' 'lib32-gst-plugins-base-libs'
'vulkan-icd-loader' 'lib32-vulkan-icd-loader'
'sdl2' 'lib32-sdl2'
'sane'
'libgphoto2'
'ffmpeg'
'cups'
'samba'
'dosbox'
)
options=('staticlibs' '!lto')
install="${pkgname}.install"
provides=("wine=${pkgver}" "bin32-wine=${pkgver}" "wine-wow64=${pkgver}")
conflicts=('wine' 'bin32-wine' 'wine-wow64')
replaces=('bin32-wine')
source=('git+https://gitlab.winehq.org/ElementalWarrior/wine.git#branch=affinity-photo2-wine87'
'30-win32-aliases.conf'
'wine-binfmt.conf')
sha256sums=('SKIP'
'9901a5ee619f24662b241672a7358364617227937d5f6d3126f70528ee5111e7'
'6dfdefec305024ca11f35ad7536565f5551f09119dda2028f194aee8f77077a4')
prepare() {
rm -rf build-{32,64}
mkdir -p build-{32,64}
}
pkgver() {
git -C wine describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^wine.//;s/^v//;s/\.rc/rc/'
}
build() {
# does not compile without remove these flags as of 4.10
export CFLAGS="${CFLAGS/-fno-plt/}"
export LDFLAGS="${LDFLAGS/,-z,now/}"
# build wine 64-bit
# (according to the wine wiki, this 64-bit/32-bit building order is mandatory)
printf '%s\n' ' -> Building wine-64...'
cd build-64
../wine/configure \
--prefix='/usr' \
--libdir='/usr/lib' \
--with-x \
--with-gstreamer \
--with-vulkan \
--enable-win64
make
# build wine 32-bit
printf '%s\n' ' -> Building wine-32...'
cd "${srcdir}/build-32"
export PKG_CONFIG_PATH='/usr/lib32/pkgconfig'
../wine/configure \
--prefix='/usr' \
--libdir='/usr/lib32' \
--with-x \
--with-vulkan \
--with-gstreamer \
--with-wine64="${srcdir}/build-64"
make
}
package() {
# package wine 32-bit
# (according to the wine wiki, this reverse 32-bit/64-bit packaging order is important)
printf '%s\n' ' -> Packaging wine-32...'
cd build-32
make prefix="${pkgdir}/usr" \
libdir="${pkgdir}/usr/lib32" \
dlldir="${pkgdir}/usr/lib32/wine" \
install
# package wine 64-bit
printf '%s\n' ' -> Packaging wine-64...'
cd "${srcdir}/build-64"
make 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/lib32/wine/i386-windows"/*.dll
"${CARCH}-w64-mingw32-strip" --strip-unneeded "${pkgdir}/usr/lib/wine/${CARCH}-windows"/*.dll
}