1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 08:57:20 +00:00
serenity/Toolchain/BuildRuby.sh
Andrew Kaster 809852aeb1 Toolchain+Ports: Install host ruby into Local/ruby, not Local/$ARCH
Following the pattern for qemu, mold, and clang, we should install the
host ruby required to build the ruby port into its own install tree
rather than forcing it into the GNU compiler's bindir.
2022-06-30 12:29:18 +01:00

51 lines
1.2 KiB
Bash
Executable File

#!/usr/bin/env bash
set -e
# This file will need to be run in bash, for now.
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
PREFIX_DIR="$DIR/Local/ruby"
BUILD_DIR="$DIR/Build/ruby"
TARBALLS_DIR="$DIR/Tarballs"
# shellcheck source=/dev/null
source "$DIR/../Ports/ruby/version.sh"
mkdir -p "${TARBALLS_DIR}"
pushd "${TARBALLS_DIR}"
if [ ! -e "${RUBY_ARCHIVE}" ]; then
echo "Downloading Ruby from ${RUBY_ARCHIVE_URL}..."
curl -O "${RUBY_ARCHIVE_URL}"
else
echo "${RUBY_ARCHIVE} already exists, not downloading archive"
fi
if ! sha256sum --status -c <(echo "${RUBY_ARCHIVE_SHA256SUM}" "${RUBY_ARCHIVE}"); then
echo "Ruby archive SHA256 sum mismatch, please run script again"
rm -f "${RUBY_ARCHIVE}"
exit 1
fi
if [ ! -d "ruby-${RUBY_VERSION}" ]; then
echo "Extracting ${RUBY_ARCHIVE}..."
tar -xf "${RUBY_ARCHIVE}"
else
echo "ruby-${RUBY_VERSION} already exists, not extracting archive"
fi
popd
if [ -z "$MAKEJOBS" ]; then
MAKEJOBS=$(nproc)
fi
mkdir -p "${PREFIX_DIR}"
mkdir -p "${BUILD_DIR}"
pushd "${BUILD_DIR}"
"${TARBALLS_DIR}"/ruby-"${RUBY_VERSION}"/configure --prefix="${PREFIX_DIR}"
make -j "${MAKEJOBS}"
make install
popd