ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

commit e994265009d74e20a0d1af684a76cc0caacbdbb4
parent 5dff70471552f09dedfce1b883260ff259424336
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon, 30 Jun 2014 15:11:28 +0200

add htop

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Ahtop/checksums | 1+
Ahtop/htop.mk | 19+++++++++++++++++++
Ahtop/mkfile | 6++++++
Ahtop/v.mk | 1+
4 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/htop/checksums b/htop/checksums @@ -0,0 +1 @@ +4c5c784b093bcad06eb2e8d8bb215e14f6e838a3d47d8da8402344c270c1724f85d0bcde2899571ba5d0e5a02274a0c3390a76fed61785b2604b51351f08f232 htop-1.0.3.tar.gz diff --git a/htop/htop.mk b/htop/htop.mk @@ -0,0 +1,19 @@ +TARG = htop +DEPS = ncurses + +INSTALL_BIN = htop +INSTALL_MAN1 = htop.1 + +<$mkbuild/mk.common + +htop:QV: + export CFLAGS="$CFLAGS $DEPS_CFLAGS" + export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS" + CC="${CC} -static" ./configure \ + --prefix="$PREFIX" \ + --mandir="$ROOT/share/man" \ + --disable-shared \ + --disable-unicode \ + --enable-cgroup \ + --enable-oom + make -j$nprocs LDFLAGS="-all-static $LDFLAGS" diff --git a/htop/mkfile b/htop/mkfile @@ -0,0 +1,6 @@ +<$mkbuild/mk.3rdparty + +<v.mk +src = htop-$v +url = http://hisham.hm/htop/releases/$v/htop-$v.tar.gz +mkfile = ../htop.mk diff --git a/htop/v.mk b/htop/v.mk @@ -0,0 +1 @@ +v = 1.0.3