Difference between revisions of "DOSBox"

From CBLFS
Jump to navigationJump to search
 
 
(5 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/dosbox/dosbox-0.65.tar.gz
+
| http://prdownloads.sourceforge.net/dosbox/dosbox-{{DOXBox-Version}}.tar.gz
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Package-Introduction|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)|http://sourceforge.net/projects/dosbox/}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 29: 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 &&
 
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 ===
Line 65: Line 43:
  
 
  make install
 
  make install
 +
 +
[[Category:Emulators]]

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