Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Commit e3a033e

Browse files
author
DanielDevBR
committed
bump f11 proton wine to v5.11
1 parent 97de037 commit e3a033e

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

deployscript/archlinux-wine-deploy.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
2-
P_URL="https://www.playonlinux.com/wine/binaries/phoenicis/proton-linux-x86/PlayOnLinux-proton_4.2-proton-linux-x86.tar.gz"
3-
P_NAME=$(echo $P_URL | cut -d/ -f7)
4-
P_FILENAME=$(echo $P_URL | cut -d/ -f8)
5-
P_CSOURCE=$(echo $P_FILENAME | cut -d- -f1)
6-
P_VERSION=$(echo $P_FILENAME | cut -d- -f2 | cut -d_ -f2)
2+
P_URL="https://github.com/ferion11/f11_wine_builder/releases/download/continuous-proton/wine-proton-5.11.tar.gz"
3+
P_NAME="proton-linux-x86"
4+
P_FILENAME="$(echo $P_URL | cut -d/ -f9)"
5+
P_CSOURCE="f11"
6+
TEMP="$(echo $P_FILENAME | cut -d- -f3)"
7+
P_VERSION="${TEMP%???????}"
78
WINE_WORKDIR="wineversion"
89
PKG_WORKDIR="pkg_work"
910

deployscript/test_name.sh

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
#!/bin/bash
22

33
# If it's a Release Candidate, you will have to change P_VERSION to include the "-rc2" kind of string
4-
P_URL="https://www.playonlinux.com/wine/binaries/phoenicis/proton-linux-x86/PlayOnLinux-proton_4.2-proton-linux-x86.tar.gz"
4+
#P_URL="https://www.playonlinux.com/wine/binaries/phoenicis/proton-linux-x86/PlayOnLinux-proton_4.2-proton-linux-x86.tar.gz"
5+
P_URL="https://github.com/ferion11/f11_wine_builder/releases/download/continuous-proton/wine-proton-5.11.tar.gz"
56

6-
# staging-linux-x86
7-
P_NAME=$(echo $P_URL | cut -d/ -f7)
7+
# proton-linux-x86
8+
P_NAME="proton-linux-x86"
89

9-
# PlayOnLinux-wine-4.21-staging-linux-x86.tar.gz
10-
P_FILENAME=$(echo $P_URL | cut -d/ -f8)
10+
# PlayOnLinux-proton_4.2-proton-linux-x86.tar.gz
11+
P_FILENAME="$(echo $P_URL | cut -d/ -f9)"
1112

1213
# PlayOnLinux
13-
P_CSOURCE=$(echo $P_FILENAME | cut -d- -f1)
14+
P_CSOURCE="f11"
1415

15-
# 4.21
16-
P_VERSION=$(echo $P_FILENAME | cut -d- -f2 | cut -d_ -f2)
16+
# 5.11
17+
TEMP="$(echo $P_FILENAME | cut -d- -f3)"
18+
P_VERSION="${TEMP%???????}"
1719

1820
#========================================
1921
echo "P_URL: $P_URL"

0 commit comments

Comments
 (0)