Today, I worked on the build script to add a new dependency dav1d
. I consolidated actions, renamed SOURCES_CONFIGURE
, and removed the unmaintained INSTALL_AS_ROOT
option. Now, the options look like:
ACTION_GET=1
ACTION_CONFIGURE=1
ACTION_COMPILE_INSTALL=1
We also have the following options that could be considered steps or actions that changed:
CLEANUP => ACTION_CLEANUP
ARCHIVE => ACTION_ARCHIVE
SOURCES_CLEAN => ACTION_CLEAN_SOURCE
The order is
- ACTION_CLEAN_SOURCE (only acts on previously “GET” sources)
- ACTION_GET
- ACTION_CONFIGURE
- ACTION_COMPILE_INSTALL
- ACTION_ARCHIVE
- ACTION_CLEANUP