#!/bin/bash ##################################################################### # Download and install Icarus Verilog 10.2 on a Debian-based system. # I wrote and executed this script on Linux Mint 18.3, which is based # on Ubuntu 16.4. # # Author: Alex Hogen <https://github.com/ahogen> # Created: 2017-12-12 ##################################################################### sudo apt update && sudo apt install gcc g++ gperf libc6-dev && \ wget -N ftp://icarus.com/pub/eda/verilog/v10/verilog-10.2.tar.gz && \ tar -xvzf verilog-10.2.tar.gz && \ cd verilog-10.2 && \ ./configure && \ make && \ sudo make install && \ vvp-V && \ echo "All Done!"