Add bootstrap script.

This script takes care of all the dependencies.
master
Fabien Freling 2015-07-17 23:34:06 +02:00
parent 209c9cf911
commit 1de4ad70db
1 changed files with 23 additions and 0 deletions

23
ocaml/bootstrap Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
case `uname -s` in
'Darwin')
PKG_CONFIG_PATH=/usr/local//Cellar/sqlite/3.8.0.2/lib/pkgconfig
brew install gnutls
;;
'FreeBSD')
sudo portsnap fetch update
cd /usr/ports/security/gnutls
sudo make install
;;
*)
echo "Unsupported platform."
exit 1
;;
esac
opam update
opam install lwt
opam install conf-gnutls
opam install ocamlnet
opam install irc-client