about summary refs log tree commit diff homepage
path: root/scripts/build/p-uclibc-linux-ubuntu.inc
blob: 36bdce58484995bda9797f98468121236151976f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# Build dependencies
install_build_dependencies_uclibc() { 
  apt update -y

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

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