Removed obsolete and incomplete HowToContribute, and reference to that file in Releas...
[foam-extend-3.2.git] / vagrantSandbox / initFreeBSDScript.sh
bloba5c0514ecda78a9c9689c66abc8216b5c69de215
1 #! /usr/bin/env bash
3 boxName=$1
5 echo
6 echo "Init script for $boxName"
7 echo
9 pkg install -fy virtualbox-ose-additions
11 neededPackages=(mercurial git flex bison ccache rpm4 wget)
12 bonusPackages=(emacs24 zsh)
14 for p in ${neededPackages[@]}; do
15 pkg install -y $p
16 done
18 for p in ${bonusPackages[@]}; do
19 pkg install -y $p
20 done
22 echo
23 echo "FreeBSD-specific ended. Now doing general stuff"
24 echo
26 /vagrant/initGeneralScript.sh
28 echo
29 echo "Ended"