about summary refs log tree commit diff homepage
path: root/scripts/build/p-z3-linux-ubuntu-16.04.inc
blob: 2f5e408612816d2e9b6c2fc2400a6102ea1614f9 (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() { 
  apt update -y

  dependencies=(
    build-essential

	python
    git
    wget
    ca-certificates
  )

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