Leonardo Sandoval | 854babb | 2022-01-27 10:20:00 -0600 | [diff] [blame^] | 1 | #! /usr/bin/env sh |
2 | |||||
3 | pkg 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 \ | ||||
19 | bash | ||||
20 | |||||
21 | mount -t fdescfs fdesc /dev/fd | ||||
22 | mount -t procfs proc /proc | ||||
23 | |||||
24 | echo 'fdesc /dev/fd fdescfs rw 0 0' >> /etc/fstab | ||||
25 | echo 'proc /proc procfs rw 0 0' >> /etc/fstab |