diff options
author | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-29 14:57:18 +0200 |
---|---|---|
committer | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-29 14:57:18 +0200 |
commit | cdc70aeb16e19e164e6350f0fb454417371a1fd7 (patch) | |
tree | fce3054b5c1e5cb39337a62aeac475bc83af5c06 | |
parent | of course, nodejs is ancient as well (diff) | |
download | librewolf-linux-cdc70aeb16e19e164e6350f0fb454417371a1fd7.tar.gz librewolf-linux-cdc70aeb16e19e164e6350f0fb454417371a1fd7.tar.bz2 librewolf-linux-cdc70aeb16e19e164e6350f0fb454417371a1fd7.zip |
nasm is, of course, not recent as well
-rwxr-xr-x | binary_tarball/scripts/1_Install_Dependencies.sh | 2 | ||||
-rwxr-xr-x | binary_tarball/scripts/4_Build_Binary_Tarball.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh index 173d020..f430e3b 100755 --- a/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/binary_tarball/scripts/1_Install_Dependencies.sh @@ -5,7 +5,7 @@ set -e # Setup Script Variables # _DEPENDENCIES="mercurial wget git flatpak flatpak-builder"; -_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3 libjack-dev"; +_DEPENDENCIES="wget git xvfb build-essential xz-utils curl python3 libjack-dev nasm-mozilla"; export DEBIAN_FRONTEND=noninteractive # Installs Dependencies diff --git a/binary_tarball/scripts/4_Build_Binary_Tarball.sh b/binary_tarball/scripts/4_Build_Binary_Tarball.sh index 515db21..c8b70b8 100755 --- a/binary_tarball/scripts/4_Build_Binary_Tarball.sh +++ b/binary_tarball/scripts/4_Build_Binary_Tarball.sh @@ -7,6 +7,7 @@ OUTPUT_TARBALL=$2; CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../../)} _SOURCE_CODE_BINARY_TARBALL_LOCATION="./obj*/dist/librewolf*.tar.bz2"; _MOZBUILD=$srcdir/../mozbuild +export PATH=/usr/lib/nasm-mozilla/bin:$PATH # we do change / unset some of them later, but setting them as set by Arch # might make it easier to maintain changes in build scripts on both sides |