Browse Source

setup-ubuntu.sh: Use shorter string concatenation

android-5
Fredrik Fornwall 8 years ago
parent
commit
c6f5b04a53
  1. 57
      scripts/setup-ubuntu.sh

57
scripts/setup-ubuntu.sh

@ -1,33 +1,34 @@
#!/bin/sh #!/bin/bash
set -e -u
PACKAGES="" PACKAGES=""
PACKAGES="$PACKAGES ant" # Used by jack and aptsigner. PACKAGES+=" ant" # Used by jack and aptsigner.
PACKAGES="$PACKAGES asciidoc" PACKAGES+=" asciidoc"
PACKAGES="$PACKAGES automake" PACKAGES+=" automake"
PACKAGES="$PACKAGES bison" PACKAGES+=" bison"
PACKAGES="$PACKAGES clang" # Used by golang, useful to have same compiler building. PACKAGES+=" clang" # Used by golang, useful to have same compiler building.
PACKAGES="$PACKAGES curl" # Used for fetching sources. PACKAGES+=" curl" # Used for fetching sources.
PACKAGES="$PACKAGES flex" PACKAGES+=" flex"
PACKAGES="$PACKAGES gettext" # Provides 'msgfmt' which the apt build uses. PACKAGES+=" gettext" # Provides 'msgfmt' which the apt build uses.
PACKAGES="$PACKAGES git" # Used by the neovim build. PACKAGES+=" git" # Used by the neovim build.
PACKAGES="$PACKAGES help2man" PACKAGES+=" help2man"
PACKAGES="$PACKAGES intltool" # Used by qalc build. PACKAGES+=" intltool" # Used by qalc build.
PACKAGES="$PACKAGES libgdk-pixbuf2.0-dev" # Provides 'gkd-pixbuf-query-loaders' which the librsvg build uses. 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+=" libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build uses.
PACKAGES="$PACKAGES libtool-bin" PACKAGES+=" libtool-bin"
PACKAGES="$PACKAGES lzip" PACKAGES+=" lzip"
PACKAGES="$PACKAGES python3.6" PACKAGES+=" python3.6"
PACKAGES="$PACKAGES subversion" # Used by the netpbm build. PACKAGES+=" subversion" # Used by the netpbm build.
PACKAGES="$PACKAGES tar" PACKAGES+=" tar"
PACKAGES="$PACKAGES unzip" PACKAGES+=" unzip"
PACKAGES="$PACKAGES m4" PACKAGES+=" m4"
PACKAGES="$PACKAGES openjdk-8-jdk" # Used for android-sdk. PACKAGES+=" openjdk-8-jdk" # Used for android-sdk.
PACKAGES="$PACKAGES pkg-config" PACKAGES+=" pkg-config"
PACKAGES="$PACKAGES python-docutils" # For rst2man, used by mpv. PACKAGES+=" python-docutils" # For rst2man, used by mpv.
PACKAGES="$PACKAGES scons" PACKAGES+=" scons"
PACKAGES="$PACKAGES texinfo" PACKAGES+=" texinfo"
PACKAGES="$PACKAGES xmlto" PACKAGES+=" xmlto"
PACKAGES="$PACKAGES xutils-dev" # Provides 'makedepend' which the openssl build uses. PACKAGES+=" xutils-dev" # Provides 'makedepend' which the openssl build uses.
DEBIAN_FRONTEND=noninteractive sudo apt-get install -yq $PACKAGES DEBIAN_FRONTEND=noninteractive sudo apt-get install -yq $PACKAGES

Loading…
Cancel
Save