summarylogtreecommitdiffstats
path: root/mingw-wine.sh
diff options
context:
space:
mode:
authorMichel Zou2018-05-11 13:19:33 +0200
committerMichel Zou2018-05-11 13:19:33 +0200
commit9d19c9e988f0bc73f335b06756df94d6c709b028 (patch)
tree384d2cea487fba21e78864e0436475c94f54e8ad /mingw-wine.sh
parent60bc288b6770c189e39b501d0a0e05b05fdb40f9 (diff)
downloadaur-9d19c9e988f0bc73f335b06756df94d6c709b028.tar.gz
split wine package
Diffstat (limited to 'mingw-wine.sh')
-rw-r--r--mingw-wine.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/mingw-wine.sh b/mingw-wine.sh
deleted file mode 100644
index d3cebe1b9dff..000000000000
--- a/mingw-wine.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-set -e
-
-mingw_prefix=/usr/@TRIPLE@
-
-# run it in a custom WINEPREFIX to not mess with default ~/.wine
-# also default prefix might be a 32 bits prefix, which will fail to run x86_64 exes
-export WINEPREFIX=~/.wine-@TRIPLE@
-
-# WINEPATH is used to find dlls, otherwise they should lie next to the exe
-if test -z "${WINEPATH}"
-then
- export WINEPATH=${mingw_prefix}/bin
-fi
-
-
-if test "@TRIPLE@" = "x86_64-w64-mingw32"
-then
- export WINEARCH=win64
-else
- export WINEARCH=win32
-fi
-
-wine "$@"
-