utf8proc: Update from 2.1.0 to 2.1.1
[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"
c6f5b04a 9PACKAGES+=" curl" # Used for fetching sources.
eb5f02a8 10PACKAGES+=" ed" # Used by bc
c6f5b04a 11PACKAGES+=" flex"
29162280 12PACKAGES+=" gcc-multilib" # Used by pforth build for 32-bit arches.
c6f5b04a 13PACKAGES+=" gettext" # Provides 'msgfmt' which the apt build uses.
29162280 14PACKAGES+=" g++"
c6f5b04a 15PACKAGES+=" git" # Used by the neovim build.
38d6235c 16PACKAGES+=" gperf" # Used by the fontconfig build.
c6f5b04a
FF
17PACKAGES+=" help2man"
18PACKAGES+=" intltool" # Used by qalc build.
c6f5b04a
FF
19PACKAGES+=" libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build uses.
20PACKAGES+=" libtool-bin"
cbb88069 21PACKAGES+=" libncurses5-dev" # Used by mariadb for host build part.
c6f5b04a
FF
22PACKAGES+=" lzip"
23PACKAGES+=" python3.6"
c6f5b04a
FF
24PACKAGES+=" tar"
25PACKAGES+=" unzip"
26PACKAGES+=" m4"
852e83ab 27PACKAGES+=" openjdk-8-jdk-headless" # Used for android-sdk.
c6f5b04a 28PACKAGES+=" pkg-config"
852e83ab
FF
29PACKAGES+=" python3-docutils" # For rst2man, used by mpv.
30PACKAGES+=" python3-setuptools" # Needed by at least asciinema.
ee6a231c 31PACKAGES+=" python3-sphinx" # Needed by notmuch man page generation.
29162280 32PACKAGES+=" ruby" # Needed to build ruby.
c6f5b04a
FF
33PACKAGES+=" scons"
34PACKAGES+=" texinfo"
29162280 35PACKAGES+=" texlive-binaries" # Needed by texlive build.
c6f5b04a
FF
36PACKAGES+=" xmlto"
37PACKAGES+=" xutils-dev" # Provides 'makedepend' which the openssl build uses.
91a5322f
HG
38PACKAGES+=" libexpat1-dev" # Needed by ghostscript
39PACKAGES+=" libjpeg-dev" # Needed by ghostscript
6376c142 40
29162280 41DEBIAN_FRONTEND=noninteractive sudo apt-get install -yq --no-install-recommends $PACKAGES
4e963c62
FF
42
43sudo mkdir -p /data/data/com.termux/files/usr
88183689 44sudo chown -R `whoami` /data