blob: d4fd3aef7c18a78a22d8f95127ab604bbbc2e781 [file] [log] [blame]
Leonardo Sandoval854babb2022-01-27 10:20:00 -06001#! /usr/bin/env sh
2
3pkg install -y \
4 curl \
5 git \
6 gnupg \
7 openjdk8 \
8 python3 \
9 unzip \
10 cmake \
11 valgrind \
12 doxygen \
13 graphviz \
14 lcov \
15 wget \
16 lsof \
17 gmake \
18 perl5 \
Arthur She48dc52a2022-04-12 12:44:50 -070019 bash \
Arthur Shef0134562022-04-12 13:04:31 -070020 py38-pip
Leonardo Sandoval854babb2022-01-27 10:20:00 -060021
22mount -t fdescfs fdesc /dev/fd
23mount -t procfs proc /proc
24
25echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab
26echo 'proc /proc procfs rw 0 0' >> /etc/fstab