diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2022-12-09 10:07:40 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-12-10 07:43:14 +0700 |
commit | 5057860ef297893c7fd1821efaa2f9cbeef7cd59 (patch) | |
tree | b4640fb76fe3179e05ef61bfc2a951cea0040707 /system | |
parent | fefb8d0e5b2283f5084b4f0464693efa3fcc33ab (diff) |
system/wine-staging: Updated for version 7.22.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/wine-staging/README | 6 | ||||
-rw-r--r-- | system/wine-staging/wine-staging.SlackBuild | 12 | ||||
-rw-r--r-- | system/wine-staging/wine-staging.info | 10 |
3 files changed, 14 insertions, 14 deletions
diff --git a/system/wine-staging/README b/system/wine-staging/README index daed9c4969ff2..4945f04b0550a 100644 --- a/system/wine-staging/README +++ b/system/wine-staging/README @@ -17,14 +17,14 @@ This SlackBuild will try to autodetect whether to build for 32 or 64 bits or both. WINE64 and WINE32 can be used to enable/disable each ARCH: - WINE64=no ./wine.SlackBuild - WINE32=no ./wine.SlackBuild + WINE64=NO ./wine.SlackBuild + WINE32=NO ./wine.SlackBuild The executable for 64 bit wine is named wine64. To disable OpenGL support, use: - OPENGL=no ./wine.SlackBuild + OPENGL=NO ./wine.SlackBuild The above options can be combined. diff --git a/system/wine-staging/wine-staging.SlackBuild b/system/wine-staging/wine-staging.SlackBuild index 3db7791e3814a..14e7c31c4a790 100644 --- a/system/wine-staging/wine-staging.SlackBuild +++ b/system/wine-staging/wine-staging.SlackBuild @@ -34,7 +34,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=wine-staging -VERSION=${VERSION:-7.18} +VERSION=${VERSION:-7.22} # This ought to work (madcap laughter) WINEVERSION=${WINEVERSION:-$VERSION} BUILD=${BUILD:-1} @@ -72,11 +72,11 @@ fi # auto find which ARCHs to build for WINETMP="$( mktemp -d $TMP/wine-test-XXXXXX )" echo "int main(void) {; return(0); }" > "$WINETMP/test.c" -gcc -m32 "$WINETMP/test.c" -o /dev/null >/dev/null 2>&1 && WINE32=${WINE32:-yes} -gcc -m64 "$WINETMP/test.c" -o /dev/null >/dev/null 2>&1 && WINE64=${WINE64:-yes} +gcc -m32 "$WINETMP/test.c" -o /dev/null >/dev/null 2>&1 && WINE32=${WINE32:-YES} +gcc -m64 "$WINETMP/test.c" -o /dev/null >/dev/null 2>&1 && WINE64=${WINE64:-YES} rm -rf "$WINETMP" -if [ "${WINE32:-no}${WINE64:-no}" = "nono" ]; then +if [ "${WINE32:-NO}${WINE64:-NO}" = "NONO" ]; then echo "Both 64 and 32 bit builds disabled. Nothing to do." exit 1 fi @@ -136,7 +136,7 @@ patch -p1 --verbose < $CWD/0001-winhlp32-Workaround-a-bug-in-Flex.patch # fix path of opencl headers. sed 's|OpenCL/opencl.h|CL/opencl.h|g' -i configure* -if [ "${WINE64:-no}" = "yes" ]; then +if [ "${WINE64:-NO}" = "YES" ]; then wine64="--with-wine64=../wine64" mkdir wine64 cd wine64 @@ -165,7 +165,7 @@ if [ "${WINE64:-no}" = "yes" ]; then cd .. fi -if [ "${WINE32:-no}" = "yes" ]; then +if [ "${WINE32:-NO}" = "YES" ]; then mkdir wine32 cd wine32 diff --git a/system/wine-staging/wine-staging.info b/system/wine-staging/wine-staging.info index 336814c17e5e0..9aa829a55a574 100644 --- a/system/wine-staging/wine-staging.info +++ b/system/wine-staging/wine-staging.info @@ -1,10 +1,10 @@ PRGNAM="wine-staging" -VERSION="7.18" +VERSION="7.22" HOMEPAGE="https://wiki.winehq.org/Wine-Staging" -DOWNLOAD="https://dl.winehq.org/wine/source/7.x/wine-7.18.tar.xz \ - https://github.com/wine-staging/wine-staging/archive/v7.18/wine-staging-7.18.tar.gz" -MD5SUM="879dd506c4aa1c94256c71f494aee72d \ - c56f115c45e950c0665dc5bfd581d382" +DOWNLOAD="https://dl.winehq.org/wine/source/7.x/wine-7.22.tar.xz \ + https://github.com/wine-staging/wine-staging/archive/v7.22/wine-staging-7.22.tar.gz" +MD5SUM="c0f66aab1e6ab19f905ab64adef865d1 \ + 9eece4a4d67187f40abc14958d270874" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |