DOSBox: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) No edit summary |
Bigdissaved (talk | contribs) Added Intro |
||
| Line 7: | Line 7: | ||
---- | ---- | ||
{{ | {{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 == | ||
Revision as of 16:17, 15 February 2008
| 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.
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
Compile the package:
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make
Install the package
make install