Skip to content

Building From Source

Stas Sergeev edited this page Jun 17, 2022 · 8 revisions

Building from source

First, clone the repo:

git clone https://github.com/dosemu2/dosemu2.git

On most Debian-based systems (including Ubuntu), after cloning the dosemu2 repo you should install the build dependencies listed in the debian/control file under item Build-Depends.

After the requirements are installed, install fdpp and fdpp-dev. Visit the fdpp repo for installation instructions and downloads.

Then run:

./autogen.sh
./default-configure (provide any desired arguments, such as `--prefix`
make
sudo make install

If you'd like to install the program without superuser privileges, use configure --prefix=$HOME/.local and make sure that $HOME/.local/bin is in your PATH.