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.
13 lines
291 B
13 lines
291 B
6 years ago
|
termux_step_configure_meson() {
|
||
|
termux_setup_meson
|
||
|
CC=gcc CXX=g++ $TERMUX_MESON \
|
||
|
$TERMUX_PKG_SRCDIR \
|
||
|
$TERMUX_PKG_BUILDDIR \
|
||
|
--cross-file $TERMUX_MESON_CROSSFILE \
|
||
|
--prefix $TERMUX_PREFIX \
|
||
|
--libdir lib \
|
||
|
--buildtype minsize \
|
||
|
--strip \
|
||
|
$TERMUX_PKG_EXTRA_CONFIGURE_ARGS
|
||
|
}
|