22 lines
419 B
Bash
22 lines
419 B
Bash
#!/bin/sh
|
|
|
|
LIMINE_VERSION="9.3.4"
|
|
FLANTERM_VERSION="2.1.0"
|
|
|
|
if [ -e dependencies ]; then
|
|
echo dependencies directory already exists.
|
|
exit
|
|
fi
|
|
|
|
set -e
|
|
|
|
mkdir dependencies
|
|
|
|
cd dependencies
|
|
curl -L https://codeberg.org/Limine/Limine/archive/v${LIMINE_VERSION}-binary.tar.gz | tar xz
|
|
make -C limine
|
|
cd ..
|
|
|
|
cd dependencies
|
|
curl -L https://codeberg.org/Mintsuki/Flanterm/archive/v${FLANTERM_VERSION}.tar.gz | tar xz
|
|
cd ..
|