Package Details: wine-stable 9.0-2

Git Clone URL: https://aur.archlinux.org/wine-stable.git (read-only, click to copy)
Package Base: wine-stable
Description: A compatibility layer for running Windows programs
Upstream URL: https://www.winehq.org/
Licenses: LGPL
Conflicts: wine
Provides: wine
Submitter: chungy
Maintainer: chungy
Last Packager: chungy
Votes: 34
Popularity: 0.071536
First Submitted: 2016-06-18 08:40 (UTC)
Last Updated: 2024-02-13 19:52 (UTC)

Required by (348)

Sources (4)

Pinned Comments

isatsam commented on 2023-11-08 23:25 (UTC) (edited on 2023-11-08 23:25 (UTC) by isatsam)

gpg --keyserver keys.openpgp.org --recv-keys CEFAC8EAAF17519D
seems to not be doing anything for me anymore, so the package doesn't build because of a dependency of a dependency's checksum
This worked:
gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7

Latest Comments

1 2 3 4 5 6 Next › Last »

SkyLLer commented on 2024-04-18 10:08 (UTC)

jeffJiang export LDFLAGS=${LDFLAGS/-Wl,-z,now} with quote on quote or without? Isn't it supposed to be LDFLAGS="${LDFLAGS/-Wl,-z,now}" ?

IRVNG commented on 2024-04-16 21:22 (UTC)

Thank you jeffJiang! It did work! Now compiling and installing was successful. :D

jeffJiang commented on 2024-04-16 17:07 (UTC) (edited on 2024-04-16 17:08 (UTC) by jeffJiang)

modify PKGBUILD export LDFLAGS="${LDFLAGS/,-z,now/}" (line 119) to export LDFLAGS=${LDFLAGS/-Wl,-z,now} will solve the problem that RashadGasimli and IRVNG mentioned

IRVNG commented on 2024-04-14 10:22 (UTC) (edited on 2024-04-15 19:01 (UTC) by IRVNG)

I have the same problem as RashadGasimli. I can't compile and I get the exact same error. Does anyone know how fix it?

RashadGasimli commented on 2024-03-20 17:55 (UTC)

I can't compile

==> Starting build()... checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking whether make sets $(MAKE)... yes checking for gcc... gcc checking whether the C compiler works... no configure: error: in /home/rashadgasimli/.cache/yay/wine-stable/src/wine-64-build': configure: error: C compiler cannot create executables Seeconfig.log' for more details ==> ERROR: A failure occurred in build(). Aborting... -> error making: wine-stable-exit status 4 -> Failed to install the following packages. Manual intervention is required: wine-stable - exit status 4

ScaredLions commented on 2024-01-19 08:58 (UTC) (edited on 2024-01-19 09:20 (UTC) by ScaredLions)

gpg --keyserver keys.openpgp.org --recv-keys CEFAC8EAAF17519D

and

 gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7

didn't work for me so I am looking for different keys. Will update if I find any

Edit:

 gpg --recv-key CEFAC8EAAF17519D

fixed the key issue. In research I've found the lib32-libgphoto2 is indeed hard to build (as ugjka mentioned) and might require manual installation.

zj7909 commented on 2024-01-15 21:54 (UTC)

gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7

This did not work for me. I will see what I can find out and post here.

isatsam commented on 2023-11-08 23:25 (UTC) (edited on 2023-11-08 23:25 (UTC) by isatsam)

gpg --keyserver keys.openpgp.org --recv-keys CEFAC8EAAF17519D
seems to not be doing anything for me anymore, so the package doesn't build because of a dependency of a dependency's checksum
This worked:
gpg --keyserver keys.openpgp.org --recv-keys CFDF148828C642A7

ugjka commented on 2023-06-18 05:18 (UTC)

Can you add this patch: https://bugs.winehq.org/show_bug.cgi?id=54994 There is a bug with lates mesa for those who have opengl below v4.6

Can you also drop the lib32-libgphoto2 dependency, it has been dropped from the repos and is a nightmare to build from aur

svallinn commented on 2022-10-09 22:22 (UTC) (edited on 2022-10-09 22:26 (UTC) by svallinn)

@angindel Before reporting such things while using an AUR helper (in this case I can see you are using yay), always check if building with makepkg also fails (which it won't because I just checked)

I recommend trying to build with makepkg

WHY IT FAILS WITH yay:

(Most likely) yay (like other pacman wrappers) calls makepkg at least two separate times: once to run the PKGBUILD's prepare function and the other actually builds (build) and installs (package) the package.

Since these happen in two separate instances of the command, these lines in the prepare function

  # https://bugs.winehq.org/show_bug.cgi?id=43530
  export CFLAGS="${CFLAGS/-fno-plt/}"
  export LDFLAGS="${LDFLAGS/,-z,now/}"

don't produce the intended effect, since the environmental variables don't carry over to the second call of makepkg which actually triggers the build function (which is where these two statements are actually of use)

This can indeed be easily fixed by moving those lines to the build function