2015-07-27 22:12:06 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
PACKAGES=""
|
|
|
|
PACKAGES="$PACKAGES asciidoc"
|
|
|
|
PACKAGES="$PACKAGES automake"
|
|
|
|
PACKAGES="$PACKAGES bison"
|
|
|
|
PACKAGES="$PACKAGES cmake"
|
2015-08-23 12:33:07 +02:00
|
|
|
PACKAGES="$PACKAGES curl" # Used for fetching sources
|
2015-07-27 22:12:06 +02:00
|
|
|
PACKAGES="$PACKAGES flex"
|
|
|
|
PACKAGES="$PACKAGES gettext" # Provides 'msgfmt' which the apt build uses
|
2016-05-25 17:29:32 +02:00
|
|
|
PACKAGES="$PACKAGES git" # Used by the neovim build
|
2015-07-27 22:12:06 +02:00
|
|
|
PACKAGES="$PACKAGES help2man"
|
|
|
|
PACKAGES="$PACKAGES libc6-dev-i386" # Needed by luajit host part of the build for <sys/cdefs.h>
|
2016-05-25 00:38:29 +02:00
|
|
|
PACKAGES="$PACKAGES libcurl4-openssl-dev" # XXX: Needed by apt build
|
2015-07-27 22:12:06 +02: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
|
|
|
|
PACKAGES="$PACKAGES libncurses5-dev"
|
2016-05-25 17:29:32 +02:00
|
|
|
PACKAGES="$PACKAGES libtool-bin"
|
2015-07-27 22:12:06 +02:00
|
|
|
PACKAGES="$PACKAGES lzip"
|
2016-05-25 17:29:32 +02:00
|
|
|
PACKAGES="$PACKAGES luarocks" # Used by the neovim build.
|
2016-05-25 00:38:29 +02:00
|
|
|
PACKAGES="$PACKAGES subversion" # Used by the netpbm build.
|
|
|
|
PACKAGES="$PACKAGES tar"
|
|
|
|
PACKAGES="$PACKAGES unzip"
|
2015-07-27 22:12:06 +02:00
|
|
|
PACKAGES="$PACKAGES m4"
|
2016-05-25 00:38:29 +02:00
|
|
|
PACKAGES="$PACKAGES openjdk-8-jdk" # Used for android-sdk.
|
2015-07-27 22:12:06 +02:00
|
|
|
PACKAGES="$PACKAGES pkg-config"
|
|
|
|
PACKAGES="$PACKAGES scons"
|
|
|
|
PACKAGES="$PACKAGES texinfo"
|
|
|
|
PACKAGES="$PACKAGES xmlto"
|
|
|
|
PACKAGES="$PACKAGES xutils-dev" # Provides u'makedepend' which the openssl build uses
|
2016-05-25 00:38:29 +02:00
|
|
|
sudo apt-get install -y $PACKAGES
|
2015-07-27 22:12:06 +02:00
|
|
|
|
2016-05-25 17:29:32 +02:00
|
|
|
# Needed by neovim build:
|
|
|
|
luarocks install lpeg
|
|
|
|
luarocks install mpack
|
|
|
|
luarocks install luabitop
|
|
|
|
|
2015-07-27 22:12:06 +02:00
|
|
|
sudo mkdir -p /data/data/com.termux/files/usr
|
|
|
|
sudo chown -R $USER /data
|