You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
322 B
10 lines
322 B
6 years ago
|
termux_step_configure() {
|
||
|
if [ "$TERMUX_PKG_FORCE_CMAKE" == 'no' ] && [ -f "$TERMUX_PKG_SRCDIR/configure" ]; then
|
||
|
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
|
||
|
}
|