从源代码安装 wine,无需 root 访问权限

从源代码安装 wine,无需 root 访问权限

我正在尝试wine在没有 root 访问权限的情况下在我的计算机上安装。我知道使用更改前缀automake --prefix=$HOME/Self_Programs,但随后收到此错误消息:

[tomas@wizard wine-1.1.27]$ automake --prefix=$HOME/Self_Programs`
automake: unrecognized option '--prefix=/home/tomas/Self_Programs'.`
automake: Try '/usr/bin/automake --help' for more information.`

(这是在使用configure源码中的命令之前和之后尝试过的)

我真的被困在这里:有人可以帮助我解决我做错了什么吗?

答案1

使用 GNU autotools 构建系统,您可以将--prefix选项传递给配置脚本。以下应该适用于编译 wine:

./configure --prefix=$HOME/Self_Programs
make
make install

相关内容