Difference between revisions of "DOSBox"

From CBLFS
Jump to navigationJump to search
 
Line 31: Line 31:
 
== Multilib ==
 
== Multilib ==
 
'''''This package does not provide any libraries so only one installation is needed.'''''
 
'''''This package does not provide any libraries so only one installation is needed.'''''
 
=== 32Bit ===
 
 
Compile the package:
 
 
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
 
./configure --prefix=/usr --build=${CLFS_TARGET32} &&
 
make
 
 
Install the package
 
 
make install
 
 
=== N32 ===
 
 
Compile the package:
 
 
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
 
./configure --prefix=/usr --libdir=/usr/lib32 &&
 
make
 
 
Install the package
 
 
make install
 
  
 
=== 64Bit ===
 
=== 64Bit ===

Latest revision as of 18:47, 1 July 2009

Download Source: http://prdownloads.sourceforge.net/dosbox/dosbox-0.72.tar.gz

Introduction to DOSBox

DOSBox emulates a full x86 pc with sound and dos. Its main use is to run old dosgames on platforms which don't have dos(win2K/XP/linux/FreeBSD/Mac OS X)

Project Homepage: http://sourceforge.net/projects/dosbox/

Dependencies

Required

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install