memgraph/init
Marko Budiselic 66d56820ac Cleanup of poc/. Only CMakeLists is left because it is reasonable to have a proof of concept folder.
Summary: Cleanup of poc/.

Reviewers: dgleich, mislav.bradac

Reviewed By: mislav.bradac

Subscribers: pullbot, buda

Differential Revision: https://phabricator.memgraph.io/D166
2017-03-23 18:10:37 +01:00

19 lines
380 B
Bash
Executable File

#!/bin/bash
echo "START"
# install all dependencies on debian based operating systems
for pkg in wget git cmake uuid-dev clang-3.8 llvm-3.8 clang-format-3.8 doxygen libreadline-dev; do
dpkg -s $pkg 2>/dev/null >/dev/null || sudo apt-get -y install $pkg
done
# create a default build directory
mkdir -p ./build
# setup libs (download)
cd libs
./setup.sh
cd ..
echo "DONE"