Difference between revisions of "GTK3 VICE for Thumbdriven Image 3.0"

From Jay's Cafe' Wiki
(Created page with "#Create baseline Ubuntu 18.04 LTS install with Minimal X implementation, SSH, Basic Ubuntu Service #Download needed files, current nightly release and build VICE. For just GTK...")
 
m
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
#Create baseline Ubuntu 18.04 LTS install with Minimal X implementation, SSH, Basic Ubuntu Service
#Download needed files, current nightly release and build VICE.
For just GTK3ui -- the install will take a while. lots of packages are likely to be needed.
For just GTK3ui -- the install will take a while. lots of packages are likely to be needed.
<pre>
<pre>
# sudo -i
sudo -i
# apt update
apt update
# apt full-upgrade -y
apt full-upgrade -y
# apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags build-essential \
apt install vim-nox vim-scripts vim-youcompleteme exuberant-ctags build-essential \
libgtk-3-dev bison flex xa65 subversion tcpser libjpeg-dev libgif-dev libpng-dev libpcap* \
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 \
libswresample-dev libavresample-dev autogen libmp3lame-dev yasm freeglut3-dev libglew-dev \
autoconf texinfo mate-desktop gdm3 -y
autoconf texinfo mate-desktop gdm3 dos2unix texlive-pstricks libvorbis-dev libflac-dev libmpg123-dev -y
# mkdir -p sandbox/svn
mkdir -p sandbox/svn
# cd sandbox/svn
cd sandbox/svn
# svn checkout svn://svn.code.sf.net/p/vice-emu/code/trunk vice-emu-code
svn checkout svn://svn.code.sf.net/p/vice-emu/code/trunk vice-emu-code
# cd vice-emu-code/vice
cd vice-emu-code/vice
# ./autogen.sh
./autogen.sh
# ./configure -C --enable-native-tools --enable-native-gtk3ui --enable-x64 --enable-realdevice
./configure -C --enable-native-tools --enable-native-gtk3ui --enable-x64 --enable-realdevice
# make -j $(nproc --all)
make -j $(nproc --all)
# make install
make install
</pre>
</pre>

Latest revision as of 14:23, 28 October 2020

For just GTK3ui -- the install will take a while. lots of packages are likely to be needed.

sudo -i
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 mate-desktop gdm3 dos2unix texlive-pstricks libvorbis-dev libflac-dev libmpg123-dev -y
mkdir -p sandbox/svn
cd sandbox/svn
svn checkout svn://svn.code.sf.net/p/vice-emu/code/trunk vice-emu-code
cd vice-emu-code/vice
./autogen.sh
./configure -C --enable-native-tools --enable-native-gtk3ui --enable-x64 --enable-realdevice
make -j $(nproc --all)
make install