Codebase list tclreadline / upstream/2.3.6+git20190903.920b40f provision-vagrant-vm.sh
upstream/2.3.6+git20190903.920b40f

Tree @upstream/2.3.6+git20190903.920b40f (Download .tar.gz)

provision-vagrant-vm.sh @upstream/2.3.6+git20190903.920b40fraw · history · blame

#! /bin/sh
set -e
sudo apt-get update
sudo apt-get install -y \
        autoconf \
        build-essential \
        expect \
        itcl3 \
        libreadline6 \
        libreadline6-dev \
        libtool \
        tcl \
        tcl-dev
cd /vagrant
autoreconf -fvi
./configure --with-tcl-includes=/usr/include/tcl
make
sudo make install