forked from bacnet-stack/bacnet-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aptfile
executable file
·59 lines (51 loc) · 1.31 KB
/
aptfile
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
#!/usr/bin/env aptfile
# ^ note the above shebang
# https://github.com/seatgeek/bash-aptfile
# Copied locally into tools/bash-aptfile
# This file is used to install packages on a development environment
# using the apt-get package manager.
# Run using the following command:
# sudo ./tools/bash-aptfile/bin/aptfile ./aptfile
# trigger an apt-get update
update
# install core development packages
package "build-essential"
package "cmake"
package "lcov"
package "clang"
package "gcc"
package "libconfig-dev"
package "liblwip-dev"
package "mingw-w64"
# install git and useful tools packages
package "git"
package "gitk"
package "gitg"
package "pre-commit"
# install source code format packages
package "tofrodos"
package "clang-format"
package "sloccount"
package "complexity"
package "pmccabe"
# install ARM compiler and debugging tools
package "gcc-arm-none-eabi"
package "binutils-arm-none-eabi"
package "picolibc-arm-none-eabi"
package "gdb-multiarch"
# install AVR compiler and debugging tools
package "gcc-avr"
package "avarice"
package "avr-libc"
package "avrdude"
package "gdb-avr"
package "avrdude-doc"
# install static analysis tools
package "flawfinder"
package "cppcheck"
package "splint"
package "clang-tools"
package "clang-tidy"
package "codespell"
# you can also execute arbitrary bash
echo "🚀 ALL GOOD TO GO"