about summary refs log tree commit diff homepage
path: root/scripts/build/p-z3-linux-ubuntu.inc
blob: 2a46ac46b1507b6bda23e6390e6acef658e6bace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Build dependencies Z3
install_build_dependencies_z3() { 
  apt update -y

  dependencies=(
    build-essential
    python
    git
    wget
    ca-certificates
  )

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