Files
termux-packages/packages/nmon/build.sh
termux-pacman-bot 263ea55b26 bump(main/nmon): 16s
This commit has been automatically submitted by Github Actions.
2025-11-26 06:46:39 +00:00

32 lines
1008 B
Bash

TERMUX_PKG_HOMEPAGE=https://nmon.sourceforge.net/
TERMUX_PKG_DESCRIPTION="Curses based Performance Monitor for Linux with saving performance stats to a CSV file mode"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="16s"
TERMUX_PKG_SRCURL=https://downloads.sourceforge.net/nmon/lmon${TERMUX_PKG_VERSION}.c
TERMUX_PKG_SHA256=0736ce0f729e48c124a7ba566c069c5a234511cc9c6ac9277da92f8bb44f2b11
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="ncurses"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_get_source() {
termux_download $TERMUX_PKG_SRCURL $TERMUX_PKG_CACHEDIR/lmon.c $TERMUX_PKG_SHA256
mkdir -p $TERMUX_PKG_SRCDIR
cp $TERMUX_PKG_CACHEDIR/lmon.c $TERMUX_PKG_SRCDIR
}
termux_step_pre_configure() {
case $TERMUX_ARCH in
aarch64 | arm ) CPPFLAGS+=" -DARM" ;;
* ) CPPFLAGS+=" -DX86" ;;
esac
}
termux_step_make() {
$CC $CFLAGS $CPPFLAGS $TERMUX_PKG_SRCDIR/lmon.c -o nmon $LDFLAGS -lncurses -lm
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin nmon
}