-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinstall.sh
More file actions
100 lines (94 loc) · 1.74 KB
/
Copy pathinstall.sh
File metadata and controls
100 lines (94 loc) · 1.74 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/bin/bash
# Build dependencies snstallation script for WLAN Pi
# Generated from control files
set -e
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo "WLAN Pi dev build dependencies installer"
echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
echo ""
echo "Updating package lists..."
sudo apt-get update
echo ""
echo "Installing build dependencies..."
echo ""
sudo apt-get install -y --no-install-recommends \
debhelper \
debhelper-compat \
dh-python \
dh-virtualenv \
build-essential \
devscripts \
sbuild \
schroot \
debootstrap \
ca-certificates \
quilt \
autotools-dev \
autoconf \
pkg-config \
python3 \
python3-dev \
python3-setuptools \
python3-distutils \
python3-venv \
python3-tk \
python3-gi \
gcc-aarch64-linux-gnu \
gcc-arm-linux-gnueabihf \
bc \
flex \
bison \
rsync \
tar \
libtiff5-dev \
libopenjp2-7-dev \
zlib1g-dev \
libfreetype6-dev \
liblcms2-dev \
libwebp-dev \
tcl8.6-dev \
tk8.6-dev \
libharfbuzz-dev \
libfribidi-dev \
libxcb1-dev \
dbus \
libdbus-1-dev \
libdbus-glib-1-dev \
libglib2.0-dev \
libcairo2-dev \
libgirepository1.0-dev \
libffi-dev \
libnl-3-dev \
libnl-genl-3-dev \
libnl-route-3-dev \
libnl-cli-3-200 \
libssl-dev \
libpcsclite-dev \
libreadline-dev \
git \
vim \
parted \
qemu-user-static \
binfmt-support \
zerofree \
zip \
dosfstools \
libarchive-tools \
libcap2-bin \
udev \
xz-utils \
curl \
file \
kmod \
fdisk \
gpg \
pigz \
arch-test \
qemu-utils \
kpartx \
coreutils
echo ""
echo "~~~~"
echo "Done"
echo "~~~~"
echo ""