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

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

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