Build Nightly Releases of VICE-emu on Ubuntu

From Jay's Cafe' Wiki
Revision as of 15:22, 28 October 2020 by Jayctheriot (talk | contribs)
  • Install subversion
  • Download nightly source
  • Download required packages and configure
    • Raspberry Pi
      • SDL2
      • GTK3
    • i386 and x86_64
      • SDL2
      • GTK3
  • Build the binary and install

---Building on a clean minimal container to catch all the dependencies---

apt update
apt full-upgrade -y
apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags build-essential \
libgtk-3-dev bison flex xa65 subversion libjpeg-dev libgif-dev libpng-dev \
libswresample-dev libavresample-dev autogen libmp3lame-dev yasm freeglut3-dev libglew-dev \
autoconf texinfo yasm dos2unix lightdm -y
cd ~
mkdir sandbox/svn -p
cd sandbox/svn
svn checkout svn://svn.code.sf.net/p/vice-emu/code/trunk vice-emu-code
./autogen.sh
./configure -C --enable-native-tools --enable-native-gtk3ui --disable-arch --enable-x64 --enable-static-ffmpg --disable-hwscale --disable-pdf-docs
make -j $(nproc --all)