Optional Features: | Description |
---|---|
--disable-option-checking |
ignore unrecognized --enable /--with options |
--disable-FEATURE |
do not include FEATURE (same as --enable-FEATURE=no ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
cd && rm -rf openssl-3.4.0 | |
[[ ! -f openssl-3.4.0.tar.gz ]] && curl -LO https://github.com/openssl/openssl/releases/download/openssl-3.4.0/openssl-3.4.0.tar.gz | |
tar xf openssl-3.4.0.tar.gz | |
cd openssl-3.4.0 | |
cat >> "riscv-patch" << EOF | |
diff --git a/include/crypto/riscv_arch.h b/include/crypto/riscv_arch.h | |
index 4b3573f5a3..c0b94d1ca5 100644 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Let wel: Die Windows-binêre lêers in libusb-1.0.27.7z word verskaf soos dit is en sal dalk nie vir jou gereedskapketting werk nie. In daardie geval, bou asseblief libusb vanaf die bron deur u eie gereedskapsketting te gebruik. | |
Let wel: | |
*.tar.bz is ons amptelike vrystelling lêers, dit is behoorlike vrystelling tarballs insluitend konfigurasie. | |
*.tar.gz en .zip is iets wat GitHub genereer, ongelukkig het ons nie 'n manier gevind om hulle te deaktiveer nie. Hulle is net 'n git-kiekie, sonder bv. instel. | |
*) https://github.com/orgs/community/discussions/6003 | |
Shënim: Binarët e Windows në libusb-1.0.27.7z ofrohen siç janë dhe mund të mos funksionojnë për zinxhirin tuaj të veglave. Në këtë rast, ju lutemi ndërtoni libusb nga burimi duke përdorur zinxhirin tuaj të veglave. |
Pandoc is a simple multi binary setup.
🟦 It does not really require a complicated action or a docker container to quickly bootstrap this on linux or when using it in a github action.
We will bootstrap these binaries with two commands.
pandoc
pandoc-lua
pandoc-server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
install_dir="/usr/local" | |
boost_version="1_76_0" | |
# | |
apk add autoconf automake build-base cmake curl git libtool linux-headers perl pkgconf python3 python3-dev re2c tar | |
# | |
apk add icu-dev libexecinfo-dev openssl-dev qt5-qtbase-dev qt5-qttools-dev qt5-qtsvg-dev zlib-dev | |
# | |
git clone --shallow-submodules --recurse-submodules https://github.com/ninja-build/ninja.git ~/ninja && cd ~/ninja | |
git checkout "$(git tag -l --sort=-v:refname "v*" | head -n 1)" # always checkout the latest release | |
cmake -Wno-dev -Wno-deprecated -B build \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
#shellcheck source=sources/functions/utils | |
. /etc/swizzin/sources/functions/utils | |
#shellcheck source=sources/functions/os | |
. /etc/swizzin/sources/functions/os | |
#shellcheck source=sources/functions/app_port | |
. /etc/swizzin/sources/functions/app_port | |
#shellcheck source=sources/functions/ip | |
. /etc/swizzin/sources/functions/ip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
authelia_local_version="$($HOME/bin/authelia --version | awk '{ print $3 }' | sed -rn 's|v(.*)|\1|p')" | |
authelia_remote_version="$(git ls-remote -t --sort=-v:refname --refs https://github.com/authelia/authelia.git | awk '{sub("refs/tags/v", "");sub("(.*)(rc|alpha|beta)(.*)", ""); print $2 }' | awk '!/^$/' | head -n 1)" | |
# | |
if [[ "$authelia_local_version" != "$authelia_remote_version" ]]; then | |
wget -qO "$HOME/authelia.tar.gz" "https://github.com/authelia/authelia/releases/download/v${authelia_remote_version}/authelia-linux-amd64.tar.gz" | |
tar -xf "$HOME/authelia.tar.gz" -C "$HOME/bin/" authelia-linux-amd64 | |
mv -f "$HOME/bin/authelia-linux-amd64" "$HOME/bin/authelia" | |
[[ -f "$HOME/authelia.tar.gz" ]] && rm -f "$HOME/authelia.tar.gz" | |
systemctl --user restart authelia.service | |
echo "Authelia updated and restarted" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# shellcheck disable=SC1091,SC2034 # sourced files | |
# | |
set -a | |
# | |
export DEBIAN_FRONTEND="noninteractive" TZ="Europe/London" | |
# | |
cr="\e[31m" # [c]olor[r]ed | |
cg="\e[32m" # [c]olor[g]reen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
# | |
# shellcheck disable=SC1091,SC2034 # sourced files | |
# | |
set -a | |
# | |
export DEBIAN_FRONTEND="noninteractive" TZ="Europe/London" | |
# | |
cr="\e[31m" # [c]olor[r]ed | |
cg="\e[32m" # [c]olor[g]reen |
NewerOlder