diff options
author | root <root@rshg054.dnsready.net> | 2011-10-19 23:14:52 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-19 23:14:52 +0000 |
commit | 6c5c865fa6674610732dd8427bf8f09f3c166299 (patch) | |
tree | 6873cd726394afbad834d3950d854e87b57cb2cd /community/nmon | |
parent | 791dde5091677cd6370690f9df9fb7cbdcfe0968 (diff) |
Wed Oct 19 23:14:52 UTC 2011
Diffstat (limited to 'community/nmon')
-rw-r--r-- | community/nmon/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/community/nmon/PKGBUILD b/community/nmon/PKGBUILD new file mode 100644 index 000000000..9cf278e07 --- /dev/null +++ b/community/nmon/PKGBUILD @@ -0,0 +1,20 @@ +# $Id$ +# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> + +pkgname=nmon +pkgver=14g +pkgrel=2 +pkgdesc="AIX & Linux Performance Monitoring tool" +arch=('i686' 'x86_64') +url="http://nmon.sourceforge.net" +license=("GPL") +depends=("ncurses") +source=("http://downloads.sourceforge.net/${pkgname}/lmon$pkgver.c") + +build() { + cd ${srcdir} + cc -o nmon lmon$pkgver.c -g -O2 -D JFS -D GETUSER -Wall -D LARGEMEM -lncurses -g + install -D -m 0755 nmon "${pkgdir}/usr/bin/nmon" +} + +md5sums=('e537f51446fb375140368b115dc8278b') |