summarylogtreecommitdiffstats
path: root/setup_dxvk_aur.verb
diff options
context:
space:
mode:
Diffstat (limited to 'setup_dxvk_aur.verb')
-rw-r--r--setup_dxvk_aur.verb35
1 files changed, 0 insertions, 35 deletions
diff --git a/setup_dxvk_aur.verb b/setup_dxvk_aur.verb
deleted file mode 100644
index 000bff4d5694..000000000000
--- a/setup_dxvk_aur.verb
+++ /dev/null
@@ -1,35 +0,0 @@
-w_metadata setup_dxvk_aur dlls \
- title="DXVK" \
- publisher="Philip Rebohle" \
- year="2018" \
- media="manual_download" \
- file1="d3d11.dll" \
- file2="d3d10.dll" \
- file3="d3d10_1.dll" \
- file4="d3d10core.dll" \
- installed_file1="C:\\windows\\system32\\d3d11.dll" \
- installed_file2="C:\\windows\\system32\\d3d10.dll" \
- installed_file3="C:\\windows\\system32\\d3d10_1.dll" \
- installed_file4="C:\\windows\\system32\\system32/d3d10core.dll" \
- homepage="https://github.com/doitsujin/dxvk"
-
-DXVK_ROOT_DIR=`dirname "$(readlink -f $1)"`
-
-load_setup_dxvk_aur()
-{
- if [ ! -e "$DXVK_ROOT_DIR" ]; then
- (>&2 echo "$DXVK_ROOT_DIR directory not found.")
- exit 1
- fi
- echo "Setting up DXVK from $DXVK_ROOT_DIR"
-
- for f in "$file1" "$file2" "$file3" "$file4"; do
- w_try ln -fs "$DXVK_ROOT_DIR/$f.so" "$W_SYSTEM64_DLLS/$f"
- done
-
- w_override_dlls native \
- d3d11 \
- d3d10 \
- d3d10_1 \
- d3d10core
-}