#!/usr/bin/env bash # Copyright 2022, FOSS-VG Developers and Contributers # # This program is free software: you can redistribute it and/or modify it # under the terms of the GNU Affero General Public License as published # by the Free Software Foundation, version 3. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # version 3 along with this program. # If not, see https://www.gnu.org/licenses/agpl-3.0.en.html source scripts/lib.sh echo -n "Wget or curl? " if command -v wget >/dev/null 2>&1; then USE_WGET=yes echo "wget" else if command -v curl >/dev/null 2>&1; then USE_WGET=no echo "curl" else echo "Found neither wget nor curl. Aborting." exit 1 fi fi function download { URL="$1" DESTINATION="$2" SHA256SUM="$3" if [ ! -d .download_cache ]; then echo "Cache directory missing." create_directory .download_cache fi if [ -f ".download_cache/$SHA256SUM" ]; then if check_sha256 ".download_cache/$SHA256SUM" "$SHA256SUM"; then echo "Using locally cached file for $DESTINATION" cp ".download_cache/$SHA256SUM" "$DESTINATION" return 0 else echo "Locally cached file for $DESTINATION is corrupted." rm ".download_cache/$SHA256SUM" download "$URL" "$DESTINATION" "$SHA256SUM" return $? fi else echo -n "Downloading $URL to $DESTINATION... " if [ $USE_WGET = yes ]; then wget -O ".download_cache/$SHA256SUM" "$URL" >/dev/null 2>&1 else curl -L "$URL" --output ".download_cache/$SHA256SUM" >/dev/null 2>&1 fi if check_sha256 ".download_cache/$SHA256SUM" "$SHA256SUM"; then cp ".download_cache/$SHA256SUM" "$DESTINATION" echo "done." return 0 else echo "error." echo "Checksum verification failed. Your download is either corrupted or the file has been altered. Removing file." rm ".download_cache/$SHA256SUM" return 1 fi fi } scripts/clean.sh scripts/clean_dependencies.sh set -e # failures are not acceptable here create_directory dependencies/tmp download https://github.com/DuffsDevice/tiny-utf8/archive/refs/tags/v4.4.3.tar.gz dependencies/tmp/tiny-utf8.tar.gz 8e3f61651909c9f3105d3501932a96aa65733127fb6e7cf94cb1b0a2dff42c8f download https://github.com/fpagliughi/sockpp/archive/refs/tags/v0.8.1.tar.gz dependencies/tmp/sockpp.tar.gz a8aedff8bd8c1da530b91be650352008fddabc9f1df0d19701d76cbc359c8651 echo -n ">>> Extracting tiny-utf8... " gzip -d dependencies/tmp/tiny-utf8.tar.gz tar -xf dependencies/tmp/tiny-utf8.tar -C dependencies echo "done" echo -n ">>> Extracting sockpp... " gzip -d dependencies/tmp/sockpp.tar.gz tar -xf dependencies/tmp/sockpp.tar -C dependencies echo "done" echo ">>> Building sockpp... " pushd dependencies/sockpp-0.8.1/ >/dev/null 2>&1 if uname -s | tr [:upper:] [:lower:] | grep cygwin >/dev/null; then echo "Adding Cygwin workaound for building sockpp." for FILE in "$(find ./ -type f)"; do sed -i -e 's/_WIN32/PLEASE_DO_NOT_DEFINE_THIS_MACRO/g' $FILE done mv ./include/sockpp/socket.h ./include/sockpp/socket.h_original echo '#include #include "socket.h_original"' > ./include/sockpp/socket.h sed -i -e 's/SO_REUSEPORT/SO_REUSEADDR/g' ./src/acceptor.cpp CFLAGS="-D_XOPEN_SOURCE=700" CXXFLAGS="-D_XOPEN_SOURCE=700" cmake -Bbuild CFLAGS="-D_XOPEN_SOURCE=700" CXXFLAGS="-D_XOPEN_SOURCE=700" cmake --build build else cmake -Bbuild . cmake --build build fi popd >/dev/null 2>&1 echo ">>> Cleaning up..." remove dependencies/tmp