Files
termux-packages/packages/ttyplot/build.sh
termux-pacman-bot 4a18f3bd90 bump(main/ttyplot): 1.7.4
Remove `-e` option from make command because it disables adding version
string with CPPFLAGS in makefile.
2025-11-16 08:40:15 +00:00

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
}