ports

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

htop.mk (466B)


      1 TARG = htop
      2 DEPS = ncurses
      3 
      4 INSTALL_BIN = htop
      5 INSTALL_MAN1 = htop.1
      6 
      7 <$mkbuild/mk.common
      8 
      9 htop:QV:
     10 	export CFLAGS="$CFLAGS $DEPS_CFLAGS"
     11 	export LDFLAGS="$LDFLAGS $DEPS_LDFLAGS"
     12 	CC="${CC} -static" ./configure \
     13 		--build="${TOOLCHAIN_TRIPLET}" \
     14 		--host="${HOST_TOOLCHAIN_TRIPLET}" \
     15 		--prefix="$PREFIX" \
     16 		--mandir="$ROOT/share/man" \
     17 		--disable-shared \
     18 		--disable-unicode \
     19 		--enable-cgroup \
     20 		--enable-oom
     21 	make -j$nprocs LDFLAGS="-all-static $LDFLAGS"