Skip to content

Instantly share code, notes, and snippets.

@bmaupin
Last active October 11, 2017 07:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bmaupin/893aff71c3a525b17bba1e2f418c9fcf to your computer and use it in GitHub Desktop.
Save bmaupin/893aff71c3a525b17bba1e2f418c9fcf to your computer and use it in GitHub Desktop.
Build Vice emulator on Ubuntu
# Get the latest version from http://vice-emu.sourceforge.net/index.html#download
vice_version=3.1
mkdir tmp-vice
cd tmp-vice
# Install dependencies
sudo apt install bison build-essential flex libasound2-dev libgnome2-dev libgtk2.0-dev libvte-dev
wget http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/vice-$vice_version.tar.gz
tar -xvf vice-$vice_version.tar.gz
cd vice-$vice_version
./configure --enable-gnomeui
make
sudo make install
# Cleanup
cd ../..
rm -rf tmp-vice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment