Skip to content

Commit e91beba

Browse files
Bash script to bootstrap DLLs
1 parent 53fe0f0 commit e91beba

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ out/
1111
build/
1212
.vscode/
1313
*-swp
14+
robots.txt

bootstrap-dlls.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env bash
2+
3+
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
4+
5+
# webplayer dlls
6+
wget -r -l 7 -np -R "index.html*" -nH --cut-dirs=2 https://cdn.dexlabs.systems/webplayer/patched-latest/ -P $SCRIPT_DIR
7+
8+
# dxvk dll
9+
wget https://github.com/doitsujin/dxvk/releases/download/v1.10.3/dxvk-1.10.3.tar.gz
10+
tar -xvf dxvk-1.10.3.tar.gz
11+
mv dxvk-1.10.3/x32/d3d9.dll $SCRIPT_DIR/d3d9_vulkan.dll
12+
rm dxvk-1.10.3.tar.gz
13+
rm -r dxvk-1.10.3/

0 commit comments

Comments
 (0)