blob: dd4faf5fc2ac0c635d345dbde2375cad9725cf3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
set -ve
apt-get update -q
apt-get install \
arcanist \
curl \
jq \
libasound2 \
libgtk-3-0 \
libx11-xcb1 \
libxml2-utils \
libxt6 \
libxtst6 \
shellcheck \
unzip \
bzip2 \
wget
rm -rf /setup
|