linux/binary_tarball/scripts/1_Install_Dependencies.sh
Ilya Lesikov 241b2fe2dd fix tarball, flatpak and appimage build scripts
Build image changed from ubuntu 18.04 to 18.10 since flatpak-builder
in 18.04 doesn't have source type 'dir' implemented yet
2019-11-05 16:57:02 +03:00

10 lines
421 B
Bash
Executable file

#!/bin/sh
printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
# Setup Script Variables
_DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
DEBIAN_FRONTEND=noninteractive apt-get -qq update;
DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES;