blob: 23d54d737ddd28bd71b70ead472e99f7324dca4d [file] [log] [blame]
Vitaly Buka38c96f92015-08-31 10:21:43 -07001#!/bin/bash
Vitaly Buka4615e0d2015-10-14 15:35:12 -07002# Copyright 2015 The Weave Authors. All rights reserved.
Vitaly Buka38c96f92015-08-31 10:21:43 -07003# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Jacob Marblee785ec92016-01-13 13:49:44 -08006# Instead of this script, try running "make all -j".
7# TODO: Delete this file after 15-feb-2016.
8
Vitaly Buka38c96f92015-08-31 10:21:43 -07009DIR=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
Johan Euphrosine3523fdd2015-10-14 20:46:05 -070010ROOT_DIR=$(cd -P -- "$(dirname -- "$0")/.." && pwd -P)
Vitaly Buka38c96f92015-08-31 10:21:43 -070011
Johan Euphrosinefdf75152015-11-06 01:16:22 -080012sudo apt-get update && sudo apt-get install ${APT_GET_OPTS} \
Vitaly Buka38c96f92015-08-31 10:21:43 -070013 autoconf \
14 automake \
15 binutils \
Vitaly Buka15888c72016-02-04 11:24:04 -080016 cmake \
Johan Euphrosinefdf75152015-11-06 01:16:22 -080017 g++ \
Vitaly Buka38c96f92015-08-31 10:21:43 -070018 hostapd \
19 libavahi-client-dev \
20 libcurl4-openssl-dev \
Harry Panc93476e2016-02-02 11:14:54 +080021 libevent-dev \
Vitaly Buka38c96f92015-08-31 10:21:43 -070022 libexpat1-dev \
Johan Euphrosine400f2e72015-10-05 16:17:20 -070023 libnl-3-dev \
24 libnl-route-3-dev \
Johan Euphrosinefdf75152015-11-06 01:16:22 -080025 libssl-dev \
Vitaly Buka38c96f92015-08-31 10:21:43 -070026 libtool \
Alex Vakulenkode1a2e72015-09-21 12:15:44 -070027 || exit 1