about summary refs log tree commit diff homepage
path: root/scripts/build/p-stp-linux-ubuntu.inc
blob: f4030023c14f0ec893a81ce2560dbcfb5b0372ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# Build dependencies
install_build_dependencies_stp() { 
  apt update -y

  dependencies=(
    build-essential

    bison
    ca-certificates
    cmake
    flex
    git
    zlib1g-dev
  )

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