2019-02-27 19:49:12 +01:00
|
|
|
termux_step_configure() {
|
2019-08-14 19:29:58 +02:00
|
|
|
[ "$TERMUX_PKG_METAPACKAGE" = "true" ] && return
|
|
|
|
|
2019-08-12 23:16:07 +02:00
|
|
|
if [ "$TERMUX_PKG_FORCE_CMAKE" = "false" ] && [ -f "$TERMUX_PKG_SRCDIR/configure" ]; then
|
2019-02-27 19:49:12 +01:00
|
|
|
termux_step_configure_autotools
|
|
|
|
elif [ -f "$TERMUX_PKG_SRCDIR/CMakeLists.txt" ]; then
|
|
|
|
termux_step_configure_cmake
|
|
|
|
elif [ -f "$TERMUX_PKG_SRCDIR/meson.build" ]; then
|
|
|
|
termux_step_configure_meson
|
|
|
|
fi
|
|
|
|
}
|