summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-02 19:03:29 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2021-02-02 19:03:42 +0100
commitced9262c30e0fac5df2ae5b30bfbb8396f2cc42b (patch)
treea3b731489b31efebf5b7ecb2dc052b854d926001
parenttag naming (diff)
downloadlibrewolf-debian-ced9262c30e0fac5df2ae5b30bfbb8396f2cc42b.tar.gz
librewolf-debian-ced9262c30e0fac5df2ae5b30bfbb8396f2cc42b.tar.bz2
librewolf-debian-ced9262c30e0fac5df2ae5b30bfbb8396f2cc42b.zip
add dependencies
-rw-r--r--scripts/build-librewolf-dpkg.sh2
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/scripts/build-librewolf-dpkg.sh b/scripts/build-librewolf-dpkg.sh
index 5e163e8..ca25ebc 100644
--- a/scripts/build-librewolf-dpkg.sh
+++ b/scripts/build-librewolf-dpkg.sh
@@ -44,6 +44,8 @@ xfonts-base \
ttf-bitstream-vera \
fonts-freefont-ttf \
fonts-dejima-mincho \
+git \
+wget \
curl
curl https://sh.rustup.rs -o rustup.sh
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index ce7d11e..1129868 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -40,6 +40,8 @@ work_dir=${CI_PROJECT_DIR}/prepared/
#####################################
# Download initial components
+apt update && apt install -y git curl wget
+
# Download upstream Debian assets, which includes
# 1. orig tarball, which in Debian is not always the pristine contents from upstream source
# 2. debian/ directory which defines how to build a package for Debian
bgstack15