276
edits
Ccawley2011 (talk | contribs) |
Ccawley2011 (talk | contribs) |
||
(11 intermediate revisions by 5 users not shown) | |||
Line 2: | Line 2: | ||
==Installing the needed libraries via a package manager== | ==Installing the needed libraries via a package manager== | ||
=== | ===Ubuntu 16.04 or later=== | ||
The following should install all the needed libraries: | The following should install all the needed libraries: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
apt | apt install g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg-turbo8-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev libunity-dev libvpx-dev libmikmod-dev libmpcdec-dev | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Other Debian-based distributions=== | |||
The following should install all the needed libraries: | |||
== | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
apt install | apt-get install g++ make git nasm libsdl2-dev libsdl2-net-dev liba52-dev libjpeg62-turbo-dev libmpeg2-4-dev libogg-dev libvorbis-dev libflac-dev libmad0-dev libpng-dev libtheora-dev libfaad-dev libfluidsynth-dev libfreetype6-dev zlib1g-dev libfribidi-dev libgif-dev libcurl4-openssl-dev libgtk-3-dev libspeechd-dev libsndio-dev libvpx-dev libmikmod-dev libmpcdec-dev | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 31: | Line 17: | ||
The following should install all the needed libraries (apart from fluidsynth): | The following should install all the needed libraries (apart from fluidsynth): | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
yum install gcc-c++ make SDL-devel libjpeg-turbo-devel libmpeg2-devel libogg-devel libvorbis-devel flac-devel libmad-devel libpng-devel libtheora-devel faad2-devel freetype-devel zlib-devel fribidi-devel | yum install gcc-c++ make SDL-devel libjpeg-turbo-devel libmpeg2-devel libogg-devel libvorbis-devel flac-devel libmad-devel libpng-devel libtheora-devel faad2-devel freetype-devel zlib-devel fribidi-devel libvpx-dev libmikmod-dev | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 37: | Line 23: | ||
The following command installs the compiler toolchain and all the needed libraries: | The following command installs the compiler toolchain and all the needed libraries: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
pacman -S --needed base-devel git curl faad2 freetype2 flac fluidsynth libjpeg-turbo libogg libvorbis libmad libmpeg2 libtheora libpng nasm readline sdl2 sdl2_net zlib fribidi | pacman -S --needed base-devel git curl faad2 freetype2 flac fluidsynth libjpeg-turbo libogg libvorbis libmad libmpeg2 libtheora libpng nasm readline sdl2 sdl2_net zlib fribidi libspeechd libvpx libmikmod | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 45: | Line 31: | ||
The following should install all the needed libraries: | The following should install all the needed libraries: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
pkg install git gmake pkgconf sdl2 faad2 freetype2 libogg libvorbis libiconv libmpeg2 libtheora libmad png flac fluidsynth sndio liba52 fribidi jpeg-turbo | pkg install git gmake pkgconf sdl2 faad2 freetype2 libogg libvorbis libiconv libmpeg2 libtheora libmad png flac fluidsynth sndio liba52 fribidi jpeg-turbo sdl2_net curl gtk3 speech-dispatcher libvpx libmikmod | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 61: | Line 37: | ||
The following should install all the needed libraries: | The following should install all the needed libraries: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
pkg_add git gmake sdl2 faad libogg libvorbis libiconv libmpeg2 libtheora libmad png flac fluidsynth liba52 fribidi jpeg | pkg_add git gmake sdl2 faad libogg libvorbis libiconv libmpeg2 libtheora libmad png flac fluidsynth liba52 fribidi jpeg sdl2-net curl gtk+3 speech-dispatcher libvpx libmikmod | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 102: | Line 68: | ||
</syntaxhighlight > | </syntaxhighlight > | ||
It is recommended to run parallel make. For example to run with | It is recommended to run parallel make. For example to run with 8 CPU cores use: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
make -j10 | make -j10 | ||
Line 116: | Line 82: | ||
== Installing ScummVM == | == Installing ScummVM == | ||
either run ./scummvm from the current directory or run make install to install ScummVM (you can then run it using "scummvm" from any directory) | either run ./scummvm from the current directory or run make install to install ScummVM (you can then run it using "scummvm" from any directory) | ||
edits