2022-01-20 07:17:45 +03:00
|
|
|
#! /bin/sh
|
2022-01-16 08:09:36 +03:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2022-01-22 05:10:25 +03:00
|
|
|
origdir="$(pwd -P)"
|
|
|
|
|
|
|
|
srcdir="$(dirname "$0")"
|
2022-01-16 08:09:36 +03:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
cd "$srcdir"
|
|
|
|
|
|
|
|
[ -d stivale ] || git clone https://github.com/stivale/stivale.git
|
|
|
|
[ -d reduced-gnu-efi ] || git clone https://github.com/limine-bootloader/reduced-gnu-efi.git
|
|
|
|
|
2022-01-31 13:46:19 +03:00
|
|
|
automake_libdir="$(automake --print-libdir)"
|
|
|
|
|
|
|
|
mkdir -p build-aux
|
2022-02-02 18:24:13 +03:00
|
|
|
cp "${automake_libdir}/install-sh" build-aux
|
2022-01-31 13:46:19 +03:00
|
|
|
|
2022-01-16 08:09:36 +03:00
|
|
|
autoconf
|
|
|
|
|
2022-01-22 05:10:25 +03:00
|
|
|
cd "$origdir"
|
|
|
|
|
2022-01-16 08:09:36 +03:00
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
|
|
exec "$srcdir"/configure "$@"
|
|
|
|
fi
|