summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2023-01-27 08:57:19 +0000
committer Eric Hameleers <alien@slackware.com>2023-01-27 08:57:19 +0000
commit4930ba907fcf517477ae12235defcdf4fb09f20c (patch)
tree6c1270d56caf02191a7fd7036bd1bbb6666691f5
parentca2004cfa6e6b1bd72a4b86ef6844e4cfe1df902 (diff)
downloadasb-4930ba907fcf517477ae12235defcdf4fb09f20c.tar.gz
asb-4930ba907fcf517477ae12235defcdf4fb09f20c.tar.xz
wine: update to 8.0
-rwxr-xr-xwine/build/wine.SlackBuild12
1 files changed, 7 insertions, 5 deletions
diff --git a/wine/build/wine.SlackBuild b/wine/build/wine.SlackBuild
index 7b0a6f4f..9cbef016 100755
--- a/wine/build/wine.SlackBuild
+++ b/wine/build/wine.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/sh
# $Id$
-# Copyright 2006-2022 Eric Hameleers, Eindhoven, NL
+# Copyright 2006-2023 Eric Hameleers, Eindhoven, NL
# All rights reserved.
#
# Permission to use, copy, modify, and distribute this software for
@@ -144,6 +144,8 @@
# * Update.
# 7.3-1 01/mar/2022 by Eric Hameleers <alien@slackware.com>
# * Update.
+# 8.0-1 25/jan/2023 by Eric Hameleers <alien@slackware.com>
+# * Update.
#
# Run 'sh wine.SlackBuild' to build a Slackware package.
# The package (.txz) plus descriptive .txt file are created in /tmp .
@@ -153,8 +155,8 @@
PRGNAM=wine
-SRCVER=${SRCVER:-"7.3"}
-STAGING=${STAGING:-"7.3"}
+SRCVER=${SRCVER:-"8.0"}
+STAGING=${STAGING:-"8.0"}
VERSION=$(echo $SRCVER | tr '-' '.')
VERMAJ=$(echo $VERSION | cut -d. -f1)
VERMIN=$(echo $VERSION | cut -d. -f2) ; [ $VERMIN -ne 0 ] && VERMIN="x"
@@ -178,7 +180,7 @@ GECKO=${GECKO:-2.47.2}
# In a 64 bit wineprefix, substitute wine64 for wine in the above command.
# If you do not want to add mono, define MONO=NO instead of a number.
# See https://wiki.winehq.org/Mono
-MONO=${MONO:-7.1.1}
+MONO=${MONO:-7.4.0}
# Set the variable OPENGL to "NO" if you don't have a card that
# supports hardware accelerated OpenGL:
@@ -214,7 +216,7 @@ if [ -z "$ARCH" ]; then
fi
case "$ARCH" in
- i?86) SLKCFLAGS="-O2 -march=${ARCH} -mtune=i686"
+ i?86) SLKCFLAGS="-Os -march=${ARCH} -mtune=i686"
;;
x86_64) SLKCFLAGS="-O2 -fPIC"
;;