blob: 936593cc9eff3c776853a3d5b18227140606a820 (
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
python3
libncurses5-dev
wget
)
#Install essential dependencies
with_sudo apt -y --no-install-recommends install "${dependencies[@]}"
}
|