about summary refs log tree commit diff homepage
path: root/scripts/build/p-stp-linux-ubuntu.inc
blob: 612022efe55816746bb7a9044b0705f0f1b379ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Build dependencies
install_build_dependencies_stp() {
  source "${DIR}/common-functions"
  with_sudo apt update -y

  dependencies=(
    build-essential

    bison
    ca-certificates
    cmake
    flex
    git
    zlib1g-dev
  )

  #Install essential dependencies
  with_sudo apt -y --no-install-recommends install "${dependencies[@]}"
}