Fix root user $HOME path
[termux-packages] / scripts / setup-ubuntu.sh
1 #!/bin/bash
2 set -e -u
3
4 PACKAGES=""
5 PACKAGES+=" ant" # Used by apksigner.
6 PACKAGES+=" asciidoc"
7 PACKAGES+=" automake"
8 PACKAGES+=" bison"
9 PACKAGES+=" clang" # Used by golang, useful to have same compiler building.
10 PACKAGES+=" curl" # Used for fetching sources.
11 PACKAGES+=" ed" # Used by bc
12 PACKAGES+=" flex"
13 PACKAGES+=" gettext" # Provides 'msgfmt' which the apt build uses.
14 PACKAGES+=" git" # Used by the neovim build.
15 PACKAGES+=" help2man"
16 PACKAGES+=" intltool" # Used by qalc build.
17 PACKAGES+=" libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build uses.
18 PACKAGES+=" libgnutls28-dev" # Needed by native build step of mariadb.
19 PACKAGES+=" libtool-bin"
20 PACKAGES+=" libncurses5-dev" # Used by mariadb for host build part.
21 PACKAGES+=" lzip"
22 PACKAGES+=" python3.6"
23 PACKAGES+=" tar"
24 PACKAGES+=" unzip"
25 PACKAGES+=" m4"
26 PACKAGES+=" openjdk-8-jdk-headless" # Used for android-sdk.
27 PACKAGES+=" pkg-config"
28 PACKAGES+=" python3-docutils" # For rst2man, used by mpv.
29 PACKAGES+=" python3-setuptools" # Needed by at least asciinema.
30 PACKAGES+=" scons"
31 PACKAGES+=" texinfo"
32 PACKAGES+=" xmlto"
33 PACKAGES+=" xutils-dev" # Provides 'makedepend' which the openssl build uses.
34
35 DEBIAN_FRONTEND=noninteractive sudo apt-get install -yq $PACKAGES
36
37 sudo mkdir -p /data/data/com.termux/files/usr
38 sudo chown -R `whoami` /data