added indentation to subcommand output of vendor `configure` invocation. This is so to be easier to identify what is executed by the vendor routine
32 lines
1.1 KiB
Text
32 lines
1.1 KiB
Text
AC_INIT
|
|
|
|
# required in Makefile to ensure proper path resolution during preprocessing
|
|
AC_CHECK_PROGS([MAKE], [make])
|
|
AC_CHECK_PROGS([REALPATH], [realpath])
|
|
AC_CHECK_PROGS([GIT], [git])
|
|
AC_CHECK_PROGS([PYTHON3], [python3])
|
|
|
|
AC_MSG_NOTICE([initializing Git submodules...])
|
|
git submodule update --init --remote --recursive
|
|
|
|
# HTML theme reference dependency for dynamic building, alternatively this could
|
|
# be removed and instead the HTML theme reference could be statically integrated
|
|
# by storing the build package archive under vendor/ instead and untar the
|
|
# archive into src/<whatever>.
|
|
AC_MSG_NOTICE([initializing vendors...])
|
|
|
|
# prefix for vendor subcommand output
|
|
sub_prefix="vendor/html-theme-ref: "
|
|
sh -c "cd vendor/html-theme-ref && sh ./configure | sed 's|^|$sub_prefix|'"
|
|
|
|
AC_MSG_NOTICE([initializing python3 venv...])
|
|
python3 -m venv .venv
|
|
|
|
AC_MSG_NOTICE([installing dependencies...])
|
|
.venv/bin/pip install --requirement requirements.txt
|
|
|
|
# install dev dependencies seperately, for clarity
|
|
AC_MSG_NOTICE([installing dev dependencies...])
|
|
.venv/bin/pip install --requirement requirements-dev.txt
|
|
|
|
AC_OUTPUT
|