add libevent installation on the vagrant box

This commit is contained in:
Moisés Guimarães 2015-02-15 13:33:21 -03:00
parent 0aa48498b9
commit b9e5b5f90c

11
Vagrantfile vendored
View File

@ -3,9 +3,20 @@
$setup = <<SCRIPT
apt-get update
apt-get install -y git autoconf libtool make valgrind libpq-dev
URL=https://sourceforge.net/projects/levent/files/libevent
LIB=libevent-2.0
VER=22-stable
wget -q $URL/$LIB/$LIB.$VER.tar.gz && tar -zxf $LIB.$VER.tar.gz
cd $LIB.$VER/ && ./autogen.sh && ./configure -q && make -s
sudo make install && cd .. && rm -rf $LIB.$VER*
SRC=vagrant
DST=wolfssl