Files
termux-packages/packages/ttyplot/build.sh
termux-pacman-bot 0fed73b8de bump(main/ttyplot): 1.5.2
This commit has been automatically submitted by Github Actions.
2023-11-17 12:39:12 +00:00

20 lines
675 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.5.2"
TERMUX_PKG_SRCURL="https://github.com/tenox7/ttyplot/archive/refs/tags/$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=a0279e55c1996133645437ccb02574c82d62f0baa9744065779b5667c1f1cb8d
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="-e"
termux_step_pre_configure() {
CFLAGS+=" $CPPFLAGS"
}
termux_step_make_install() {
install -Dm755 -t "$TERMUX_PREFIX/bin" ttyplot
}