File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 44
44
# force zstd format in appimagebuilder for appimages
45
45
rm appimage-builder ; sed -i 's|xz|zstd|' squashfs-root/usr/lib/python3.8/site-packages/appimagebuilder/modules/prime/appimage_primer.py
46
46
47
+ # pull glibc version from archlinux packages web
48
+ sed -i "s|x.xx|$(wget -qO- https://archlinux.org/packages/core/x86_64/glibc/ | grep glibc | awk '{print $5}' | cut -d'+' -f1 | head -1)|" wine-stable.yml
49
+
47
50
squashfs-root/AppRun --recipe wine-stable.yml
48
51
49
52
- name : release
83
86
# force zstd format in appimagebuilder for appimages
84
87
rm appimage-builder ; sed -i 's|xz|zstd|' squashfs-root/usr/lib/python3.8/site-packages/appimagebuilder/modules/prime/appimage_primer.py
85
88
89
+ # pull glibc version from archlinux packages web
90
+ sed -i "s|x.xx|$(wget -qO- https://archlinux.org/packages/core/x86_64/glibc/ | grep glibc | awk '{print $5}' | cut -d'+' -f1 | head -1)|" wine-devel.yml
91
+
86
92
squashfs-root/AppRun --recipe wine-devel.yml
87
93
88
94
- name : release
@@ -122,6 +128,9 @@ jobs:
122
128
# force zstd format in appimagebuilder for appimages
123
129
rm appimage-builder ; sed -i 's|xz|zstd|' squashfs-root/usr/lib/python3.8/site-packages/appimagebuilder/modules/prime/appimage_primer.py
124
130
131
+ # pull glibc version from archlinux packages web
132
+ sed -i "s|x.xx|$(wget -qO- https://archlinux.org/packages/core/x86_64/glibc/ | grep glibc | awk '{print $5}' | cut -d'+' -f1 | head -1)|" wine-staging.yml
133
+
125
134
squashfs-root/AppRun --recipe wine-staging.yml
126
135
127
136
- name : release
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ AppDir:
253
253
runtime :
254
254
env :
255
255
LIBGL_DRIVERS_PATH : ' ${APPDIR}/usr/lib/i386-linux-gnu/dri:${APPDIR}/usr/lib/x86_64-linux-gnu/dri:${LIBGL_DRIVERS_PATH}'
256
- APPDIR_LIBC_VERSION : ' 2.39 '
256
+ APPDIR_LIBC_VERSION : ' x.xx '
257
257
258
258
path_mappings :
259
259
- /opt/wine-devel:$APPDIR/opt/wine-devel
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ AppDir:
244
244
runtime :
245
245
env :
246
246
LIBGL_DRIVERS_PATH : ' ${APPDIR}/usr/lib/i386-linux-gnu/dri:${APPDIR}/usr/lib/x86_64-linux-gnu/dri:${LIBGL_DRIVERS_PATH}'
247
- APPDIR_LIBC_VERSION : ' 2.39 '
247
+ APPDIR_LIBC_VERSION : ' x.xx '
248
248
249
249
path_mappings :
250
250
- /opt/wine-stable:$APPDIR/opt/wine-stable
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ AppDir:
253
253
runtime :
254
254
env :
255
255
LIBGL_DRIVERS_PATH : ' ${APPDIR}/usr/lib/i386-linux-gnu/dri:${APPDIR}/usr/lib/x86_64-linux-gnu/dri:${LIBGL_DRIVERS_PATH}'
256
- APPDIR_LIBC_VERSION : ' 2.39 '
256
+ APPDIR_LIBC_VERSION : ' x.xx '
257
257
258
258
path_mappings :
259
259
- /opt/wine-staging:$APPDIR/opt/wine-staging
You can’t perform that action at this time.
0 commit comments