Wine: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://prdownloads.sourceforge.net/wine/wine- | | http://prdownloads.sourceforge.net/wine/wine-{{Wine-Version}}.tar.bz2 | ||
|} | |} | ||
| Line 36: | Line 36: | ||
Compile the package: | Compile the package: | ||
./configure --prefix=/opt/wine- | ./configure --prefix=/opt/wine-{{Wine-Version}} --disable-debug && | ||
make depend && | make depend && | ||
make | make | ||
| Line 43: | Line 43: | ||
make install && | make install && | ||
ln -sfv wine- | ln -sfv wine-{{Wine-Version}} /opt/wine | ||
== Multilib x86_64 == | == Multilib x86_64 == | ||
| Line 52: | Line 52: | ||
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \ | PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \ | ||
./configure --prefix=/opt/wine- | ./configure --prefix=/opt/wine-{{Wine-Version}} --disable-debug && | ||
make depend && | make depend && | ||
make | make | ||
| Line 59: | Line 59: | ||
make install && | make install && | ||
ln -sfv wine- | ln -sfv wine-{{Wine-Version}} /opt/wine | ||
=== For running 64bit apps === | === For running 64bit apps === | ||
| Line 66: | Line 66: | ||
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \ | PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \ | ||
./configure --prefix=/opt/wine- | ./configure --prefix=/opt/wine-{{Wine-Version}} --enable-win64 --disable-debug && | ||
make depend && | make depend && | ||
make | make | ||
| Line 73: | Line 73: | ||
make install && | make install && | ||
ln -sfv wine- | ln -sfv wine-{{Wine-Version}} /opt/wine | ||
== Configuration == | == Configuration == | ||
Revision as of 13:40, 17 December 2006
| Download Source: | http://prdownloads.sourceforge.net/wine/wine-1.1.38.tar.bz2 |
|---|
Remember that Wine is not an emulator therefore it will only work on x86 or x86_64 Multilib systems.
Dependencies
Required
Recomended
Optional
Non-Multilib x86
Compile the package:
./configure --prefix=/opt/wine-1.1.38 --disable-debug && make depend && make
Install the package
make install && ln -sfv wine-1.1.38 /opt/wine
Multilib x86_64
For running 32bit apps
Compile the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=/opt/wine-1.1.38 --disable-debug &&
make depend &&
make
Install the package
make install && ln -sfv wine-1.1.38 /opt/wine
For running 64bit apps
Compile the package:
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=/opt/wine-1.1.38 --enable-win64 --disable-debug &&
make depend &&
make
Install the package
make install && ln -sfv wine-1.1.38 /opt/wine
Configuration
50-wine.sh
If you're using the Bash Startup Files create an addition for them with the following command:
cat > /etc/profile.d/50-wine.sh << "EOF"
# Begin /etc/profile.d/50-wine.sh
export PATH="${PATH}:/opt/wine/bin"
export XDG_DATA_DIRS="${XDG_DATA_DIRS}${XDG_DATA_DIRS+:}/opt/wine/share"
# End /etc/profile.d/50-wine.sh
EOF
Simple config
/opt/wine/bin/winecfg