about summary refs log tree commit diff homepage
path: root/scripts/build/p-metasmt-linux-ubuntu.inc
blob: 1e381b7884ce22dbf000aac263b1a52257c0b69c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
setup_build_variables_metasmt() {
  return 0
}

install_build_dependencies_metasmt() {
  apt update -y

  dependencies=(
    # libgmp, gperf (required by yices2)
    gperf
    libgmp-dev
    libbz2-dev
    libboost-dev
    build-essential
    git
    wget
    ca-certificates
    cmake
    zlib1g-dev
    bison
    flex
    unzip
    python
    autoconf
    python3
    curl
  )

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