micro: use make build instead of quick-build (#12849)

This commit is contained in:
Raven Ravener 2022-11-04 13:47:36 +04:30 committed by GitHub
parent 9be95d1667
commit a81602ab7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_SRCURL=https://github.com/zyedidia/micro.git
TERMUX_PKG_VERSION=2.0.11
TERMUX_PKG_REVISION=1
termux_step_make() {
return
@ -20,7 +21,7 @@ termux_step_make_install() {
cp -R . $MICRO_SRC
cd $MICRO_SRC
make build-quick
make build
mv micro $TERMUX_PREFIX/bin/micro
}