diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-18 15:11:44 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-18 15:11:44 -0400 |
commit | 48b1404c33db9846baa379f97173d8e0159dc93f (patch) | |
tree | c51c7e4c812951320607ebf70215e54ca28fc7b5 | |
parent | Lamento (diff) | |
download | winescripts-48b1404c33db9846baa379f97173d8e0159dc93f.tar.gz winescripts-48b1404c33db9846baa379f97173d8e0159dc93f.tar.bz2 winescripts-48b1404c33db9846baa379f97173d8e0159dc93f.zip |
PDAFT
-rw-r--r-- | PDAFT/.gitignore | 3 | ||||
-rw-r--r-- | PDAFT/README.md | 3 | ||||
-rw-r--r-- | PDAFT/bin/VC_redist.x64.exe | bin | 0 -> 25502344 bytes | |||
-rw-r--r-- | PDAFT/bin/VC_redist.x86.exe | bin | 0 -> 13950496 bytes | |||
-rwxr-xr-x | PDAFT/env | 7 | ||||
-rwxr-xr-x | PDAFT/run | 5 | ||||
-rwxr-xr-x | PDAFT/setup | 7 |
7 files changed, 25 insertions, 0 deletions
diff --git a/PDAFT/.gitignore b/PDAFT/.gitignore new file mode 100644 index 0000000..83aad73 --- /dev/null +++ b/PDAFT/.gitignore @@ -0,0 +1,3 @@ +bin/*.tar.gz +data +wine diff --git a/PDAFT/README.md b/PDAFT/README.md new file mode 100644 index 0000000..73fed86 --- /dev/null +++ b/PDAFT/README.md @@ -0,0 +1,3 @@ +#### PDAFT + +Extract PDAFT v7.10 into `data`, along with the newest version of PD-LOADER (2.6.5a). Then run `setup`. diff --git a/PDAFT/bin/VC_redist.x64.exe b/PDAFT/bin/VC_redist.x64.exe Binary files differnew file mode 100644 index 0000000..2dd4dd0 --- /dev/null +++ b/PDAFT/bin/VC_redist.x64.exe diff --git a/PDAFT/bin/VC_redist.x86.exe b/PDAFT/bin/VC_redist.x86.exe Binary files differnew file mode 100644 index 0000000..09803e0 --- /dev/null +++ b/PDAFT/bin/VC_redist.x86.exe diff --git a/PDAFT/env b/PDAFT/env new file mode 100755 index 0000000..31c1327 --- /dev/null +++ b/PDAFT/env @@ -0,0 +1,7 @@ +#!/bin/sh + +export WINEPREFIX="$(pwd)/wine" +export WINEARCH=win64 +export WINEDLLOVERRIDES='dnsapi.dll=n,b' +export WINEESYNC=1 +export WINEDEBUG=-all diff --git a/PDAFT/run b/PDAFT/run new file mode 100755 index 0000000..9374dff --- /dev/null +++ b/PDAFT/run @@ -0,0 +1,5 @@ +#!/bin/sh + +source ./env + +cd data && wine ./diva.exe diff --git a/PDAFT/setup b/PDAFT/setup new file mode 100755 index 0000000..417fdcb --- /dev/null +++ b/PDAFT/setup @@ -0,0 +1,7 @@ +#!/bin/sh + +source ./env + +winetricks --force dotnet48 +wine ./bin/VC_redist.x86.exe +wine ./bin/VC_redist.x64.exe |