about summary refs log tree commit diff homepage
path: root/scripts/build/p-z3-linux-ubuntu.inc
blob: 411302325dde7a6069e11ab55aeb4877d4cd9adb (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
    python
    git
    wget
    ca-certificates
  )

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