termux-packages/packages/dte/build.sh
Craig Barnes 15141d2698 dte: remove ncurses dependency
Upstream no longer uses the terminfo library. The upstream makefile
also enables -j$(nproc) automatically.
2021-05-10 17:23:48 +02:00

19 lines
660 B
Bash

TERMUX_PKG_HOMEPAGE='https://craigbarnes.gitlab.io/dte/'
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"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make() {
make V=1 LDLIBS='-landroid-support -landroid-glob -liconv'
}
termux_step_make_install() {
make install V=1 prefix="$TERMUX_PREFIX"
}