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

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

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