Skip to content

Commit 5c9b179

Browse files
Added missing Ubuntu dependencies
> **Note**: This commit message is written in Markdown for the sake of clean documentation. I'm not entirely sure if `deps_linux` is intended to *only* install Ubuntu dependencies, as it checks for `apt`, and not the distribution the script is being run on. ``` if [ -x "$(command -v apt)" ]; then PKGMAN="apt" ``` Despite this, I'm assuming its intended for Ubuntu, as that seems to be the primary GNU/Linux distribution used for the compilation of Aero.
1 parent 41b4edc commit 5c9b179

File tree

1 file changed

+27
-26
lines changed

1 file changed

+27
-26
lines changed

tools/deps/deps_linux

Lines changed: 27 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,43 +4,44 @@ if [ -x "$(command -v apt)" ]; then
44
PKGMAN="apt"
55

66
packages=(
7+
"autopoint"
78
"bash"
8-
"coreutils"
9-
"make"
10-
"patch"
11-
"tar"
12-
"gzip"
139
"binutils"
14-
"gcc"
15-
"git"
16-
"subversion"
17-
"mercurial"
10+
"bison"
11+
"cmake"
12+
"coreutils"
1813
"curl"
19-
"wget"
20-
"xz-utils"
21-
"nasm"
22-
"mtools"
23-
"meson"
24-
"perl"
25-
"m4"
26-
"texinfo"
27-
"groff"
28-
"gettext"
29-
"autopoint"
3014
"expat"
31-
"bison"
3215
"flex"
16+
"gcc"
17+
"gettext"
18+
"git"
19+
"gperf"
20+
"groff"
21+
"gzip"
3322
"help2man"
23+
"libgmp-dev"
24+
"m4"
25+
"make"
26+
"mercurial"
27+
"meson"
28+
"mtools"
29+
"nasm"
3430
"openssl"
35-
"gperf"
36-
"rsync"
37-
"xsltproc"
31+
"patch"
32+
"perl"
3833
"python3"
39-
"python3-pip"
4034
"python3-mako"
35+
"python3-pip"
36+
"rsync"
37+
"subversion"
38+
"tar"
39+
"texinfo"
40+
"wget"
4141
"xcb-proto"
4242
"xorriso"
43-
"cmake"
43+
"xsltproc"
44+
"xz-utils"
4445
)
4546

4647
function install_package() { apt-get install -y $1; }

0 commit comments

Comments
 (0)