wok view nmon/receipt @ rev 23247

updated nmon (14g -> 16m)
author Hans-G?nter Theisgen
date Wed Mar 25 11:19:25 2020 +0100 (2020-03-25)
parents 28f9e4343450
children 40522d4dfb64
line source
1 # SliTaz package receipt
3 PACKAGE="nmon"
4 VERSION="16m"
5 CATEGORY="system-tools"
6 SHORT_DESC="Nigel's performance Monitor."
7 MAINTAINER="meshca@clarkson.edu"
8 LICENSE="GPL3"
9 WEB_SITE="http://nmon.sourceforge.net/"
11 TARBALL="lmon$VERSION.c"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="ncursesw"
15 BUILD_DEPENDS="linux-api-headers ncursesw-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cc -o nmon lmon$VERSION.c \
21 -g -O2 \
22 -D JFS -D GETUSER -D LARGEMEM -D POWER \
23 -Wall \
24 -lm -lncursesw -ltinfo -g
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin/
31 cp -a $src/nmon $fs/usr/bin/nmon
32 }