mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-10 20:00:51 +00:00
Remove `-e` option from make command because it disables adding version string with CPPFLAGS in makefile.
20 lines
678 B
Bash
20 lines
678 B
Bash
TERMUX_PKG_HOMEPAGE="https://github.com/tenox7/ttyplot"
|
|
TERMUX_PKG_DESCRIPTION="A realtime plotting utility for terminal with data input from stdin"
|
|
TERMUX_PKG_LICENSE="Apache-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.7.4"
|
|
TERMUX_PKG_SRCURL="https://github.com/tenox7/ttyplot/archive/refs/tags/$TERMUX_PKG_VERSION.tar.gz"
|
|
TERMUX_PKG_SHA256=d4a690cb4ca6d52885ebfdc6230bfb550eecf4b8edb9b54453829a77f63ea7b9
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="ncurses"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_pre_configure() {
|
|
CPPFLAGS+=" -DNCURSES_WIDECHAR=1"
|
|
CFLAGS+=" $CPPFLAGS"
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm755 -t "$TERMUX_PREFIX/bin" ttyplot
|
|
}
|