summaryrefslogtreecommitdiff
path: root/scripts/build-librewolf-dpkg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build-librewolf-dpkg.sh')
-rwxr-xr-xscripts/build-librewolf-dpkg.sh63
1 files changed, 0 insertions, 63 deletions
diff --git a/scripts/build-librewolf-dpkg.sh b/scripts/build-librewolf-dpkg.sh
deleted file mode 100755
index cd0eeb0..0000000
--- a/scripts/build-librewolf-dpkg.sh
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/bin/bash
-
-# Load settings
-# basically, dot-source the conf file.
-test -z "${librewolf_dpkg_conf}" && export librewolf_dpkg_conf="$( find "$( dirname "${0}" )" -maxdepth 2 -name "$( basename "${0%%.sh}.conf" )" -print 2>/dev/null | head -n1 )"
-test ! -r "${librewolf_dpkg_conf}" && { echo "Unable to load config file, which should be named the same as this script but with a .conf ending. Aborted." 1>&2 ; exit 1 ; }
-. "${librewolf_dpkg_conf}"
-
-work_dir=${CI_PROJECT_DIR}/prepared/
-
-# Aborts the script upon any faliure
-set -e;
-
-apt update
-apt install -y \
-libx11-dev \
-libx11-xcb-dev \
-libxt-dev \
-libgtk-3-dev \
-libgtk2.0-dev \
-libglib2.0-dev \
-libdrm-dev \
-libstartup-notification0-dev \
-libjpeg-dev \
-zlib1g-dev \
-libreadline-dev \
-libnspr4-dev \
-libnss3-dev \
-libvpx-dev \
-libdbus-glib-1-dev \
-libffi-dev \
-libevent-dev \
-libpulse-dev \
-libasound2-dev \
-libjack-dev \
-yasm \
-nasm \
-llvm-dev \
-libclang-dev \
-clang \
-nodejs \
-zip \
-locales \
-xvfb \
-xfonts-base \
-ttf-bitstream-vera \
-fonts-freefont-ttf \
-fonts-dejima-mincho \
-git \
-wget \
-xz-utils \
-iso-codes \
-curl
-
-curl https://sh.rustup.rs -o rustup.sh
-bash rustup.sh -y
-source /root/.cargo/env
-cargo install --version 0.17.0 cbindgen
-
-cd ${work_dir}
-dpkg-source -x librewolf_${pkgver}-${pkgrel}.dsc ${output_dir}
-cd ${output_dir}
-dpkg-buildpackage -us -uc -d
bgstack15