dte: remove ncurses dependency

Upstream no longer uses the terminfo library. The upstream makefile
also enables -j$(nproc) automatically.
This commit is contained in:
Craig Barnes 2021-05-10 15:29:05 +01:00 committed by Henrik Grimler
parent ac0142e709
commit 15141d2698
1 changed files with 4 additions and 5 deletions

View File

@ -3,17 +3,16 @@ TERMUX_PKG_DESCRIPTION='A small, configurable console text editor'
TERMUX_PKG_LICENSE='GPL-2.0'
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.10
TERMUX_PKG_REVISION=1
TERMUX_PKG_SRCURL="https://craigbarnes.gitlab.io/dist/dte/dte-${TERMUX_PKG_VERSION}.tar.gz"
TERMUX_PKG_SHA256=db62aab235764f735adc8378f796d6474596582b7dae357e0bddf31304189800
TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, libiconv, ncurses"
TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, libiconv"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
make \
-j$TERMUX_MAKE_PROCESSES V=1 \
LDLIBS='-landroid-support -landroid-glob -liconv -lcurses'
make V=1 LDLIBS='-landroid-support -landroid-glob -liconv'
}
termux_step_make_install() {
make install V=1 prefix="$TERMUX_PREFIX"
make install V=1 prefix="$TERMUX_PREFIX"
}