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