termux-packages/scripts/setup-ubuntu.sh

36 lines
1.4 KiB
Bash
Raw Normal View History

2015-07-27 20:12:06 +00:00
#!/bin/sh
PACKAGES=""
PACKAGES="$PACKAGES ant" # Used by jack and aptsigner.
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES asciidoc"
PACKAGES="$PACKAGES automake"
PACKAGES="$PACKAGES bison"
2017-01-16 10:13:38 +00:00
PACKAGES="$PACKAGES clang" # Used by golang, useful to have same compiler building.
2016-05-27 22:24:50 +00:00
PACKAGES="$PACKAGES curl" # Used for fetching sources.
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES flex"
2016-05-27 22:24:50 +00:00
PACKAGES="$PACKAGES gettext" # Provides 'msgfmt' which the apt build uses.
PACKAGES="$PACKAGES git" # Used by the neovim build.
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES help2man"
PACKAGES="$PACKAGES intltool" # Used by qalc build.
2016-05-27 22:24:50 +00:00
PACKAGES="$PACKAGES libgdk-pixbuf2.0-dev" # Provides 'gkd-pixbuf-query-loaders' which the librsvg build uses.
PACKAGES="$PACKAGES libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build uses.
2016-05-25 15:29:32 +00:00
PACKAGES="$PACKAGES libtool-bin"
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES lzip"
PACKAGES="$PACKAGES python3.6"
PACKAGES="$PACKAGES subversion" # Used by the netpbm build.
PACKAGES="$PACKAGES tar"
PACKAGES="$PACKAGES unzip"
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES m4"
PACKAGES="$PACKAGES openjdk-8-jdk" # Used for android-sdk.
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES pkg-config"
PACKAGES="$PACKAGES python-docutils" # For rst2man, used by mpv.
2015-07-27 20:12:06 +00:00
PACKAGES="$PACKAGES scons"
PACKAGES="$PACKAGES texinfo"
PACKAGES="$PACKAGES xmlto"
2016-05-27 22:24:50 +00:00
PACKAGES="$PACKAGES xutils-dev" # Provides 'makedepend' which the openssl build uses.
2016-09-23 00:47:11 +00:00
2016-05-27 22:24:50 +00:00
DEBIAN_FRONTEND=noninteractive sudo apt-get install -yq $PACKAGES
2015-07-27 20:12:06 +00:00
sudo mkdir -p /data/data/com.termux/files/usr
2016-05-27 22:24:50 +00:00
sudo chown -R `whoami` /data