Automate installation of DXVK, D9VK + Wine/Wine Staging & update GPU drivers + PlayonLinux wineprefixes (Debian/Ubuntu/Mint/Arch Linux/Manjaro)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

42 lines
1.1 KiB

--- a/build-win32.txt
+++ b/build-win32.txt
@@ -3,7 +3,6 @@
cpp = 'i686-w64-mingw32-g++'
ar = 'i686-w64-mingw32-ar'
strip = 'i686-w64-mingw32-strip'
-exe_wrapper = 'wine'
[properties]
c_link_args = ['-static', '-static-libgcc']
--- a/build-win64.txt
+++ b/build-win64.txt
@@ -3,7 +3,6 @@
cpp = 'x86_64-w64-mingw32-g++'
ar = 'x86_64-w64-mingw32-ar'
strip = 'x86_64-w64-mingw32-strip'
-exe_wrapper = 'wine'
[properties]
c_link_args = ['-static', '-static-libgcc']
--- a/package-release.sh
+++ b/package-release.sh
@@ -11,9 +11,6 @@
DXVK_ARCHIVE_PATH=$(realpath "$2")"/dxvk-$DXVK_VERSION.tar.gz"
function build_arch {
- export WINEARCH="win$1"
- export WINEPREFIX="$DXVK_BUILD_DIR/wine.$1"
-
cd "$DXVK_SRC_DIR"
meson --cross-file "$DXVK_SRC_DIR/build-win$1.txt" \
@@ -31,8 +28,7 @@
cp "$DXVK_BUILD_DIR/install.$1/bin/d3d11.dll" "$DXVK_BUILD_DIR/x$1/d3d11.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/dxgi.dll" "$DXVK_BUILD_DIR/x$1/dxgi.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/setup_dxvk.sh" "$DXVK_BUILD_DIR/x$1/setup_dxvk.sh"
-
- rm -R "$DXVK_BUILD_DIR/wine.$1"
+
rm -R "$DXVK_BUILD_DIR/build.$1"
rm -R "$DXVK_BUILD_DIR/install.$1"
}