Files
PluralTechnology/service/boot/host/deps.sh
T
2026-07-10 01:10:15 +00:00

13 lines
325 B
Bash
Executable File

#!/bin/sh
#
# Copyright (c) 2026, Chloe M., et al
# Provided under the BSD-3 clause
#
if [ ! -d stand/limine ]; then
curl -L https://github.com/Limine-Bootloader/Limine/releases/latest/download/limine-binary.tar.gz | gunzip | tar -xf -
mkdir -p stand/
mv limine-binary stand/limine/
make -C stand/limine/
fi